Skip to content

Instantly share code, notes, and snippets.

@youneshenniwrites
Created December 11, 2018 14:05
Show Gist options
  • Save youneshenniwrites/fcce5552bf1fd649c5d9d0d1f6a43e6f to your computer and use it in GitHub Desktop.
Save youneshenniwrites/fcce5552bf1fd649c5d9d0d1f6a43e6f to your computer and use it in GitHub Desktop.
Gist of first commit Zopher
import React from 'react';
import { StyleSheet, Text, View } 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>
</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