- Tampilan buat berita
- Tampilan dialog page buat proyek investasi
- Tampilan list edit beritq
- # No issue
fix:
- Perubahan minor
This commit is contained in:
2023-10-31 16:18:44 +08:00
parent a75f92c478
commit 54eae1bce3
38 changed files with 730 additions and 192 deletions

View File

@@ -0,0 +1,16 @@
import { LayoutDialogPageCreateInvestasi } from "@/app_modules/investasi";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutDialogPageCreateInvestasi>
{children}
</LayoutDialogPageCreateInvestasi>
</>
);
}

View File

@@ -0,0 +1,7 @@
import { DialogPageCreateInvestasi } from "@/app_modules/investasi";
export default async function Page(){
return<>
<DialogPageCreateInvestasi/>
</>
}