# Forum Report

## feat
- Repot posting
- Report komentar
### No issuee
This commit is contained in:
2024-03-18 14:02:01 +08:00
parent a77d728a5f
commit de0790aade
33 changed files with 605 additions and 49 deletions

View File

@@ -1,8 +1,16 @@
import { Forum_ReportKomentar } from "@/app_modules/forum";
import { forum_getMasterKategoriReport } from "@/app_modules/forum/fun/master/get_master_kategori_report";
export default async function Page({params}: {params: {id: string}}) {
let komentarId = params.id
return<>
<Forum_ReportKomentar id={komentarId}/>
export default async function Page({ params }: { params: { id: string } }) {
let komentarId = params.id;
const listReport = await forum_getMasterKategoriReport();
return (
<>
<Forum_ReportKomentar
komentarId={komentarId}
listReport={listReport as any}
/>
</>
}
);
}