13 lines
200 B
TypeScript
13 lines
200 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function AuthLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
animation: 'fade',
|
|
}}
|
|
/>
|
|
);
|
|
}
|