aboutsummaryrefslogtreecommitdiffstats
path: root/app/_layout.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-10 23:06:49 +0000
committerMohamedBassem <me@mbassem.com>2024-03-10 23:06:49 +0000
commitf14c6f43c386fde627d786cf695c63eb1feab09a (patch)
treee73ae8b7aa3c4da94aae2c2a25ae81fec69b2d08 /app/_layout.tsx
parent3616e1aa7c1da030f5155e4fffa5c3c0b9769e8c (diff)
downloadkarakeep-f14c6f43c386fde627d786cf695c63eb1feab09a.tar.zst
prep: Install lucide react native
Diffstat (limited to 'app/_layout.tsx')
-rw-r--r--app/_layout.tsx12
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>
+ );
+}