Skip to content

Instantly share code, notes, and snippets.

@iwilsonq
Created February 23, 2018 22:56
Show Gist options
  • Save iwilsonq/66edebc56ad3e8487d8e3ade05176d11 to your computer and use it in GitHub Desktop.
Save iwilsonq/66edebc56ad3e8487d8e3ade05176d11 to your computer and use it in GitHub Desktop.
Expo Blank Template
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