mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 21:06:41 +02:00
16 lines
326 B
TypeScript
16 lines
326 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function AuthLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
contentStyle: { backgroundColor: '#fff' },
|
|
}}
|
|
>
|
|
<Stack.Screen name="login" />
|
|
<Stack.Screen name="register" />
|
|
<Stack.Screen name="forgot-password" />
|
|
</Stack>
|
|
);
|
|
}
|