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

9 lines
No EOL
232 B
TypeScript

import { Stack } from 'expo-router';
export default function Layout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="index" options={{ title: 'Delivery Sequences' }} />
</Stack>
);
}