diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-10 23:06:49 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-10 23:06:49 +0000 |
| commit | f14c6f43c386fde627d786cf695c63eb1feab09a (patch) | |
| tree | e73ae8b7aa3c4da94aae2c2a25ae81fec69b2d08 /app/_layout.tsx | |
| parent | 3616e1aa7c1da030f5155e4fffa5c3c0b9769e8c (diff) | |
| download | karakeep-f14c6f43c386fde627d786cf695c63eb1feab09a.tar.zst | |
prep: Install lucide react native
Diffstat (limited to 'app/_layout.tsx')
| -rw-r--r-- | app/_layout.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/_layout.tsx b/app/_layout.tsx new file mode 100644 index 00000000..38ccb408 --- /dev/null +++ b/app/_layout.tsx @@ -0,0 +1,12 @@ +import { Slot } from "expo-router"; +import { StatusBar } from "expo-status-bar"; +import { View } from "react-native"; + +export default function RootLayout() { + return ( + <View className="w-full h-full bg-white"> + <Slot /> + <StatusBar style="auto" /> + </View> + ); +} |
