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

9 lines
No EOL
182 B
TypeScript

import { Stack } from 'expo-router'
function AboutLayout() {
return (
<Stack screenOptions={{ headerShown: true, title: "About" }} />
)
}
export default AboutLayout