Desc: - Edit investasi - Portofolio Investasi - Upload bukti transfer #No Issue
9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
|
|
import { LayoutEditInvestasi } from "@/app_modules/investasi";
|
|
import React from "react";
|
|
|
|
export default async function Layout({children, params}: {children: React.ReactNode, params:{id: string}}) {
|
|
return<>
|
|
<LayoutEditInvestasi>{children}</LayoutEditInvestasi>
|
|
</>
|
|
} |