## 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
This commit is contained in:
2024-03-07 12:20:22 +08:00
parent a3f507169a
commit 629fd601d4
67 changed files with 2110 additions and 79 deletions

View File

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

View File

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