## 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
288 B
TypeScript
15 lines
288 B
TypeScript
import { LaoyoutForum_EditKomentar } from "@/app_modules/forum";
|
|
import React from "react";
|
|
|
|
export default async function Layout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<LaoyoutForum_EditKomentar>{children}</LaoyoutForum_EditKomentar>
|
|
</>
|
|
);
|
|
}
|