freshyo/apps/user-ui/app/(drawer)/(tabs)/me/coupons/_layout.tsx
2026-01-24 00:13:15 +05:30

15 lines
No EOL
269 B
TypeScript

import { Stack } from 'expo-router';
export default function CouponsLayout() {
return (
<Stack>
<Stack.Screen
name="index"
options={{
title: 'My Coupons',
headerShown: true,
}}
/>
</Stack>
);
}