- 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

@@ -16,6 +16,7 @@ import {
import { useAtom } from "jotai";
import { useRouter } from "next/navigation";
import { gs_investasiFooter } from "../../g_state";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
export default function LayoutStatusTransaksiInvestasi_Gagal({
children,
@@ -27,7 +28,7 @@ export default function LayoutStatusTransaksiInvestasi_Gagal({
return (
<>
<AppShell
<AppComponentGlobal_LayoutTamplate
header={
<Header height={50}>
<Group position="apart" align="center" h={50} px={"md"}>
@@ -61,7 +62,7 @@ export default function LayoutStatusTransaksiInvestasi_Gagal({
}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}

View File

@@ -17,9 +17,9 @@ import { useRouter } from "next/navigation";
import React from "react";
import { gs_investasiFooter } from "../g_state";
import { Warna } from "@/app/lib/warna";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
export default function LayoutStatusTransaksiInvestasi(
{
export default function LayoutStatusTransaksiInvestasi({
children,
}: {
children: React.ReactNode;
@@ -29,7 +29,7 @@ export default function LayoutStatusTransaksiInvestasi(
return (
<>
<AppShell
<AppComponentGlobal_LayoutTamplate
header={
<Header height={50}>
<Group position="apart" align="center" h={50} px={"md"}>
@@ -63,7 +63,7 @@ export default function LayoutStatusTransaksiInvestasi(
}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}