start with movie-web page

This commit is contained in:
Jorrin
2024-04-15 19:34:42 +02:00
parent 0622e4338c
commit 07d313b1fd
6 changed files with 224 additions and 21 deletions

View File

@@ -0,0 +1,14 @@
import { Stack } from "expo-router";
import { BrandPill } from "~/components/BrandPill";
export default function Layout() {
return (
<Stack
screenOptions={{
headerTransparent: true,
headerRight: BrandPill,
}}
/>
);
}