Created
March 6, 2018 18:31
-
-
Save hgale/a07b2275f88f074f907a4f9df270d49b to your computer and use it in GitHub Desktop.
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
/** | |
* Sample React Native App | |
* https://github.com/facebook/react-native | |
* @flow | |
*/ | |
import React, { Component } from 'react'; | |
import { | |
Platform, | |
StyleSheet, | |
Text, | |
View | |
} from 'react-native'; | |
type Props = {}; | |
export default class App extends Component<Props> { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<Text>Hello World</Text> | |
<Text>Hello World</Text> | |
<Text>Hello World</Text> | |
<Text>Hello World</Text> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
marginTop: 50, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment