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

11 lines
No EOL
370 B
TypeScript

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