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

12 lines
No EOL
186 B
TypeScript

import { Stack } from 'expo-router';
export default function StoresLayout() {
return (
<Stack
screenOptions={{
headerShown: false,
}}
>
</Stack>
);
}