diff options
author | 2022-05-09 21:56:24 +0100 | |
---|---|---|
committer | 2022-05-09 21:56:24 +0100 | |
commit | 9173d98070a0463b352625c2e50d20543f7c12fb (patch) | |
tree | 563ac23bbb8caaebc0406985461b54a4f9fdb5ee /App.js | |
download | notes_mobile-9173d98070a0463b352625c2e50d20543f7c12fb.tar.gz notes_mobile-9173d98070a0463b352625c2e50d20543f7c12fb.tar.bz2 notes_mobile-9173d98070a0463b352625c2e50d20543f7c12fb.zip |
Created a new Expo app
Diffstat (limited to 'App.js')
-rw-r--r-- | App.js | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +import { StatusBar } from 'expo-status-bar'; +import { StyleSheet, Text, View } from 'react-native'; + +export default function App() { + return ( + <View style={styles.container}> + <Text>Open up App.js to start working on your app!</Text> + <StatusBar style="auto" /> + </View> + ); +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + alignItems: 'center', + justifyContent: 'center', + }, +}); |