Files
hipmi-mobile/app/(application)/(user)/portofolio/_layout.tsx
Bagasbanuna02 bfb029058c feature
deskripsi:
- new page daftar portofolio
2025-07-09 15:29:04 +08:00

27 lines
692 B
TypeScript

import LeftButtonCustom from "@/components/Button/BackButton";
import { HeaderStyles } from "@/styles/header-styles";
import { Stack } from "expo-router";
export default function PortofolioLayout() {
return (
<>
<Stack
screenOptions={{
...HeaderStyles,
headerLeft: () => <LeftButtonCustom />,
}}
>
{/* <Stack.Screen name="[id]/index" options={{ title: "Portofolio" }} /> */}
<Stack.Screen
name="[id]/create"
options={{ title: "Tambah Portofolio" }}
/>
<Stack.Screen
name="[id]/list"
options={{ title: "Daftar Portofolio" }}
/>
</Stack>
</>
);
}