freshyo/apps/admin-ui/app/(drawer)/product-groupings/_layout.tsx
2026-02-07 01:53:31 +05:30

11 lines
No EOL
394 B
TypeScript

import { Stack } from 'expo-router';
export default function Layout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="index" options={{ title: 'Product Groupings' }} />
<Stack.Screen name="create" options={{ title: 'Create Product Group' }} />
<Stack.Screen name="edit/[id]" options={{ title: 'Edit Product Group' }} />
</Stack>
);
}