## feat - Tampilan forum - Tampilan forumku - Tampilan komentar - Tampilam posting - Tampilan Detail posting - Tampilan Edit postinf - Tampilan edit komentat - Tampilan report posting - Tampilan report komentar ### No issuee
15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
import LayoutForum_Detail from "@/app_modules/forum/detail/layout";
|
|
import React from "react";
|
|
|
|
export default async function Layout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<LayoutForum_Detail>{children}</LayoutForum_Detail>
|
|
</>
|
|
);
|
|
}
|