Files
ipcostruzioni_app/app/(protected)/profile/_layout.tsx
2026-07-31 16:53:16 +02:00

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>
);
}