diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2022-02-04 11:25:49 +0100 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2022-02-04 11:25:49 +0100 |
| commit | bb1eb5012dfee08024c0dbfe071af8c28f8cace6 (patch) | |
| tree | 5f2ffa8ec99dcf02a21b17e428121fe5651c2fb9 /App.js | |
| download | geo-app-bb1eb5012dfee08024c0dbfe071af8c28f8cace6.tar.gz geo-app-bb1eb5012dfee08024c0dbfe071af8c28f8cace6.tar.zst geo-app-bb1eb5012dfee08024c0dbfe071af8c28f8cace6.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', + }, +}); |
