# feat
- Tampilan user selesai
- Tampilan admin in progres
### No Issue
This commit is contained in:
2023-12-23 04:45:55 +08:00
parent 414cf8f776
commit 5c56c32dd4
105 changed files with 4067 additions and 4 deletions

View File

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

View File

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

View File

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