# 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:
11
src/app_modules/forum/report/komentar/index.tsx
Normal file
11
src/app_modules/forum/report/komentar/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client"
|
||||
|
||||
import { Stack } from "@mantine/core"
|
||||
|
||||
export default function Forum_ReportKomentar({id}: {id: string}){
|
||||
return <>
|
||||
<Stack>
|
||||
ini laporan
|
||||
</Stack>
|
||||
</>
|
||||
}
|
||||
26
src/app_modules/forum/report/komentar/layout.tsx
Normal file
26
src/app_modules/forum/report/komentar/layout.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { ActionIcon, AppShell, Group, Header, Title } from "@mantine/core";
|
||||
import React from "react";
|
||||
import ComponentForum_HeaderTamplate from "../../component/header/header_tamplate";
|
||||
import { IconChevronLeft, IconX } from "@tabler/icons-react";
|
||||
import router from "next/router";
|
||||
import ComponentForum_HeaderRataKiri from "../../component/header/header_rata_kiri";
|
||||
|
||||
export default function LayoutForum_ReportKomentar({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<AppShell
|
||||
header={
|
||||
<ComponentForum_HeaderRataKiri title="Mengumpulkan Informasi Komentar"/>
|
||||
}
|
||||
>
|
||||
{children}
|
||||
</AppShell>
|
||||
</>
|
||||
);
|
||||
}
|
||||
11
src/app_modules/forum/report/posting/index.tsx
Normal file
11
src/app_modules/forum/report/posting/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client"
|
||||
|
||||
import { Stack } from "@mantine/core"
|
||||
|
||||
export default function Forum_ReportPosting({id}: {id: string}){
|
||||
return <>
|
||||
<Stack>
|
||||
ini laporan
|
||||
</Stack>
|
||||
</>
|
||||
}
|
||||
26
src/app_modules/forum/report/posting/layout.tsx
Normal file
26
src/app_modules/forum/report/posting/layout.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { ActionIcon, AppShell, Group, Header, Title } from "@mantine/core";
|
||||
import React from "react";
|
||||
import ComponentForum_HeaderTamplate from "../../component/header/header_tamplate";
|
||||
import { IconChevronLeft, IconX } from "@tabler/icons-react";
|
||||
import router from "next/router";
|
||||
import ComponentForum_HeaderRataKiri from "../../component/header/header_rata_kiri";
|
||||
|
||||
export default function LayoutForum_ReportPosting({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<AppShell
|
||||
header={
|
||||
<ComponentForum_HeaderRataKiri title="Mengumpulkan Informasi Posting"/>
|
||||
}
|
||||
>
|
||||
{children}
|
||||
</AppShell>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user