Skip to content

Instantly share code, notes, and snippets.

@wordyallen
Created May 18, 2016 18:39
Show Gist options
  • Save wordyallen/9ea2e2b9967642945fbf06569b20cb1d to your computer and use it in GitHub Desktop.
Save wordyallen/9ea2e2b9967642945fbf06569b20cb1d to your computer and use it in GitHub Desktop.
Starter
import React, { Component } from 'react';
import {AppRegistry,StyleSheet,Text,View} from 'react-native';
class AwesomeProject extends Component {
render() {
return (
<View style={styles.container}>
<Text >
Days of the Week:
</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
// flex:1,
},
});
AppRegistry.registerComponent('AwesomeProject', () => AwesomeProject);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment