aboutsummaryrefslogtreecommitdiffstats
path: root/App.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-10 21:48:40 +0000
committerMohamedBassem <me@mbassem.com>2024-03-10 21:48:40 +0000
commitf426d0d407335f9db6259a7a77c01ade9a01593b (patch)
tree0d7e715124608023a3c245a2e6ebe7d32665c7bd /App.tsx
downloadkarakeep-f426d0d407335f9db6259a7a77c01ade9a01593b.tar.zst
Initial commit
Generated by create-expo-app 2.1.1.
Diffstat (limited to 'App.tsx')
-rw-r--r--App.tsx20
1 files changed, 20 insertions, 0 deletions
diff --git a/App.tsx b/App.tsx
new file mode 100644
index 00000000..0329d0c9
--- /dev/null
+++ b/App.tsx
@@ -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.tsx to start working on your app!</Text>
+ <StatusBar style="auto" />
+ </View>
+ );
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ backgroundColor: '#fff',
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+});