6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
import type { ReactElement } from 'react';
|
|
import { Stack } from 'expo-router';
|
|
|
|
export default function AuthLayout(): ReactElement {
|
|
return <Stack screenOptions={{ headerShown: false }} />;
|
|
}
|