Files
mariani_mobile/app/(protected)/profile/_layout.tsx

7 lines
148 B
TypeScript

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