mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:13:26 +00:00
15 lines
259 B
TypeScript
15 lines
259 B
TypeScript
import { Stack } from "expo-router";
|
|
|
|
import { BrandPill } from "~/components/BrandPill";
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerTransparent: true,
|
|
headerRight: BrandPill,
|
|
}}
|
|
/>
|
|
);
|
|
}
|