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

11 lines
No EOL
356 B
TypeScript

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