diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-02-09 10:24:37 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-02-09 10:24:37 +0100 |
commit | 0263fa1841110cb9a2da2e0cd12d94335569c748 (patch) | |
tree | 1e1606073991b70824813f2c58a49e9ae7ff6a9a /App.js | |
download | rzut-ukosny-0263fa1841110cb9a2da2e0cd12d94335569c748.tar.gz rzut-ukosny-0263fa1841110cb9a2da2e0cd12d94335569c748.zip |
Created a new Expo app
Diffstat (limited to 'App.js')
-rw-r--r-- | App.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/App.js b/App.js new file mode 100644 index 0000000..181f3ce --- /dev/null +++ b/App.js @@ -0,0 +1,21 @@ +import { StatusBar } from 'expo-status-bar'; +import React from 'react'; +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', + }, +}); |