aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/dashboard/_layout.tsx
blob: 590c82b1af17afb21645f6f98eca1f6369b75ee3 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Stack } from "expo-router/stack";

export default function Dashboard() {
  return (
    <Stack>
      <Stack.Screen name="(tabs)" options={{ headerShown: false }} />
    </Stack>
  );
}