Files
fonsi_app/app/(protected)/construction-site/_layout.tsx
T
2026-09-10 14:08:41 +02:00

11 lines
281 B
TypeScript

import { Stack } from 'expo-router';
export default function ConstructionSiteLayout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="[id]/index" />
<Stack.Screen name="[id]/documents" />
</Stack>
);
}