- Ganti Appshell ke tamplate buatan sendiri pada Investasi
## No Issuee
This commit is contained in:
2024-04-20 06:41:51 +08:00
parent e062632de7
commit f3e9b5efae
68 changed files with 485 additions and 129 deletions

View File

@@ -1,19 +1,22 @@
"use client"
"use client";
import ComponentGlobal_HeaderTamplate from "@/app_modules/component_global/header_tamplate"
import { AppShell } from "@mantine/core"
import React from "react"
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import ComponentGlobal_HeaderTamplate from "@/app_modules/component_global/header_tamplate";
import { AppShell } from "@mantine/core";
import React from "react";
export default function LayoutDetailReviewInvestasi({children}: {children: React.ReactNode}){
return<>
<AppShell
header={
<ComponentGlobal_HeaderTamplate title="Detail Review"/>
}
>
export default function LayoutDetailReviewInvestasi({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppComponentGlobal_LayoutTamplate
header={<ComponentGlobal_HeaderTamplate title="Detail Review" />}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
}
);
}