Files
native-app/apps/expo/src/app/sync/_layout.tsx
2024-04-15 19:34:42 +02:00

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,
}}
/>
);
}