Skip to content

Instantly share code, notes, and snippets.

@hgale
Created March 6, 2018 18:31
Show Gist options
  • Save hgale/a07b2275f88f074f907a4f9df270d49b to your computer and use it in GitHub Desktop.
Save hgale/a07b2275f88f074f907a4f9df270d49b to your computer and use it in GitHub Desktop.
/**
* 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