Created
April 13, 2017 22:01
-
-
Save jungchris/0be463b4895e79ce8dfc1f280f830861 to your computer and use it in GitHub Desktop.
React Native Component Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View | |
} from 'react-native'; | |
export default class Template extends Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
justifyContent: 'center', | |
alignItems: 'center', | |
backgroundColor: '#F5FCFF' | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment