Files
hipmi/src/app_modules/investasi/upload_bukti/layout.tsx
Bagasbanuna02 f3e9b5efae # fix
- Ganti Appshell ke tamplate buatan sendiri pada Investasi
## No Issuee
2024-04-20 06:41:51 +08:00

21 lines
601 B
TypeScript

"use client";
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 LayoutBuktiTransferInvestasi({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppComponentGlobal_LayoutTamplate header={<ComponentGlobal_HeaderTamplate title="Upload Bukti Transfer" />}>
{children}
</AppComponentGlobal_LayoutTamplate>
</>
);
}