aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/dashboard/_layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/mobile/app/dashboard/_layout.tsx')
-rw-r--r--packages/mobile/app/dashboard/_layout.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/mobile/app/dashboard/_layout.tsx b/packages/mobile/app/dashboard/_layout.tsx
new file mode 100644
index 00000000..590c82b1
--- /dev/null
+++ b/packages/mobile/app/dashboard/_layout.tsx
@@ -0,0 +1,9 @@
+import { Stack } from "expo-router/stack";
+
+export default function Dashboard() {
+ return (
+ <Stack>
+ <Stack.Screen name="(tabs)" options={{ headerShown: false }} />
+ </Stack>
+ );
+}