feat:
- Tampilan buat berita - Tampilan dialog page buat proyek investasi - Tampilan list edit beritq - # No issue fix: - Perubahan minor
This commit is contained in:
16
src/app/dev/investasi/dialog_page/create/layout.tsx
Normal file
16
src/app/dev/investasi/dialog_page/create/layout.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/investasi/dialog_page/create/page.tsx
Normal file
7
src/app/dev/investasi/dialog_page/create/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DialogPageCreateInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page(){
|
||||
return<>
|
||||
<DialogPageCreateInvestasi/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user