aboutsummaryrefslogtreecommitdiffstats
path: root/App.js
diff options
context:
space:
mode:
authorGravatar piotrruss <mail@pruss.it> 2022-05-09 21:56:24 +0100
committerGravatar piotrruss <mail@pruss.it> 2022-05-09 21:56:24 +0100
commit9173d98070a0463b352625c2e50d20543f7c12fb (patch)
tree563ac23bbb8caaebc0406985461b54a4f9fdb5ee /App.js
downloadnotes_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.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/App.js b/App.js
new file mode 100644
index 0000000..09f879b
--- /dev/null
+++ b/App.js
@@ -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',
+ },
+});