Desc: - Edit investasi - Portofolio Investasi - Upload bukti transfer #No Issue
24 lines
428 B
TypeScript
24 lines
428 B
TypeScript
"use client";
|
|
|
|
import HeaderTamplate from "@/app_modules/component/header_tamplate";
|
|
import { AppShell } from "@mantine/core";
|
|
import React from "react";
|
|
|
|
export default function InvestasiCreateLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AppShell
|
|
header={
|
|
<HeaderTamplate title="Investasi Baru" />
|
|
}
|
|
>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|