_layout.tsx 288 B

12345678910111213
  1. import { Stack } from 'expo-router';
  2. export default function AccountLayout() {
  3. return (
  4. <Stack
  5. screenOptions={{
  6. headerShown: false
  7. }}
  8. >
  9. <Stack.Screen name="accountMainPage" />
  10. </Stack>
  11. );
  12. }