aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/_layout.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-11 01:37:42 +0000
committerMohamedBassem <me@mbassem.com>2024-03-11 01:37:42 +0000
commit1f3a162fde79dbf9102d2e3f67cfc6b6e2e302e9 (patch)
treeac584f3d4145c06336b16d4da16d55e4478b123b /packages/mobile/app/_layout.tsx
parentf076adce152575eb21558acdb7ee729f6c55a8e8 (diff)
parent2b720405ae3a19ac78fbf3e7231394364ba83c99 (diff)
downloadkarakeep-1f3a162fde79dbf9102d2e3f67cfc6b6e2e302e9.tar.zst
mobile: Merge mobile repo into main repo
Diffstat (limited to 'packages/mobile/app/_layout.tsx')
-rw-r--r--packages/mobile/app/_layout.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/mobile/app/_layout.tsx b/packages/mobile/app/_layout.tsx
new file mode 100644
index 00000000..7403c6ff
--- /dev/null
+++ b/packages/mobile/app/_layout.tsx
@@ -0,0 +1,14 @@
+import "@/globals.css";
+
+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>
+ );
+}