Kabar Donasi
# feat - Create kabar - Delete kabar - List kabar ## No issue
This commit is contained in:
8
src/app/dev/donasi/notif_page/[id]/layout.tsx
Normal file
8
src/app/dev/donasi/notif_page/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutDonasi_NotifPage } from "@/app_modules/donasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDonasi_NotifPage>{children}</LayoutDonasi_NotifPage>
|
||||
</>
|
||||
}
|
||||
9
src/app/dev/donasi/notif_page/[id]/page.tsx
Normal file
9
src/app/dev/donasi/notif_page/[id]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Donasi_NotifPage } from "@/app_modules/donasi";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<Donasi_NotifPage />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user