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