app.js
527 Bytes
/**
* Created by DEV005 on 2017/8/23.
*/
import React, { Component } from 'react';
import {
StyleSheet,
View,
Text
} from 'react-native';
class App extends Component{
constructor(props){
super(props);
this.state = {};
}
componentWillMount(){}
render() {
return <View style={styles.root}>
<Text>123</Text>
</View>
}
}
const styles = StyleSheet.create({
root: {
flex: 1,
backgroundColor:"#fff",
}
});
export default App;