10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { Stack } from "expo-router";
|
|
|
|
export default function ProfileLayout() {
|
|
return (
|
|
<Stack screenOptions={{headerShown: false}}>
|
|
<Stack.Screen name="index" />
|
|
<Stack.Screen name="documents" options={{ animation: 'slide_from_right' }} />
|
|
</Stack>
|
|
);
|
|
} |