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