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

11 lines
No EOL
257 B
TypeScript

import { Stack } from 'expo-router'
function EditProfileLayout() {
return (
<Stack screenOptions={{ headerShown: true }}>
<Stack.Screen name="index" options={{ title: 'Edit Profile' }} />
</Stack>
)
}
export default EditProfileLayout