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

15 lines
No EOL
273 B
TypeScript

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