# Forum
## 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:
14
src/app/dev/forum/create/layout.tsx
Normal file
14
src/app/dev/forum/create/layout.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/forum/create/page.tsx
Normal file
9
src/app/dev/forum/create/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Forum_Create } from "@/app_modules/forum";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<Forum_Create />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user