freshyo/apps/admin-ui/app/(drawer)/slots/_layout.tsx
2026-02-07 01:32:28 +05:30

12 lines
No EOL
437 B
TypeScript

import { Stack } from 'expo-router';
export default function Layout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="index" options={{ title: 'Slots' }} />
<Stack.Screen name="slot-details" options={{ title: 'Slot Details' }} />
<Stack.Screen name="add" options={{ title: 'Add Slot' }} />
<Stack.Screen name="edit/[id]" options={{ title: 'Edit Slot' }} />
</Stack>
);
}