8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
import { LayoutCeritaPenggalangDonasi } from "@/app_modules/donasi";
|
|
import React from "react";
|
|
|
|
export default async function Layout({children}: {children: React.ReactNode}) {
|
|
return<>
|
|
<LayoutCeritaPenggalangDonasi>{children}</LayoutCeritaPenggalangDonasi>
|
|
</>
|
|
} |