_layout.tsx 144 B

1234567
  1. import { Stack } from 'expo-router';
  2. export default function Layout() {
  3. return (
  4. <Stack screenOptions={{ headerShown: false }} />
  5. );
  6. }