Desc: - Fitur transaksi investasi - Fitur hitung mundur setelah transaksi - Fitur status transaksi - #No issue
20 lines
408 B
TypeScript
20 lines
408 B
TypeScript
"use client";
|
|
|
|
import HeaderTamplate from "@/app_modules/component/header_tamplate";
|
|
import { AppShell } from "@mantine/core";
|
|
import React from "react";
|
|
|
|
export default function Admin_LayoutStatusTransferInvesatasi({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AppShell header={<HeaderTamplate title="Status Transfer" />}>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|