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