16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
|
|
import "../global.css";
|
||
|
|
|
||
|
|
import { Stack } from "expo-router";
|
||
|
|
import { PortalHost } from "@rn-primitives/portal";
|
||
|
|
|
||
|
|
export default function Layout() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Stack>
|
||
|
|
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
|
||
|
|
</Stack>
|
||
|
|
<PortalHost />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|