freshyo/apps/admin-ui/app/(drawer)/slots/_layout.tsx
2026-01-24 00:13:15 +05:30

10 lines
No EOL
298 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>
);
}