Skip to content

Instantly share code, notes, and snippets.

@eyalcohen4
Last active December 15, 2017 12:38
Show Gist options
  • Save eyalcohen4/81b496dffa3429a487812572db76168f to your computer and use it in GitHub Desktop.
Save eyalcohen4/81b496dffa3429a487812572db76168f to your computer and use it in GitHub Desktop.
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { Video } from 'react-native';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { Video } from 'react-native';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<Text>Changes you make will automatically reload.</Text>
<Text>Shake your phone to open the developer menu.</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment