- Ganti Appshell dengan tamplate buatan sendiri di modul donasi
## No Issuue
This commit is contained in:
2024-04-20 07:25:43 +08:00
parent f3e9b5efae
commit 07a4ce0162
58 changed files with 379 additions and 82 deletions

View File

@@ -10,6 +10,7 @@ import { useAtom } from "jotai";
import { title } from "process";
import { useRouter } from "next/navigation";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
export default function LayoutDonasi_InvoiceProses({
children,
@@ -24,7 +25,7 @@ export default function LayoutDonasi_InvoiceProses({
}
return (
<>
<AppShell
<AppComponentGlobal_LayoutTamplate
header={
<Header height={50} sx={{ borderStyle: "none" }}>
<Group h={50} position="apart" px={"md"}>
@@ -38,7 +39,7 @@ export default function LayoutDonasi_InvoiceProses({
}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}