diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-10 22:22:29 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-10 22:22:29 +0000 |
| commit | 3616e1aa7c1da030f5155e4fffa5c3c0b9769e8c (patch) | |
| tree | 2400b384f128f5b8eef971eb7c417da10ab2be29 /app | |
| parent | 240ba2885fe716e63bf88dfdbd5f435e76919e29 (diff) | |
| download | karakeep-3616e1aa7c1da030f5155e4fffa5c3c0b9769e8c.tar.zst | |
prep: Setup expo router
Diffstat (limited to 'app')
| -rw-r--r-- | app/index.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/index.tsx b/app/index.tsx new file mode 100644 index 00000000..c6131fa0 --- /dev/null +++ b/app/index.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", + }, +}); |
