# 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,11 +1,16 @@
import { Forum_ReportPosting } 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 id = params.id;
let postingId = params.id;
const listReport = await forum_getMasterKategoriReport();
return (
<>
<Forum_ReportPosting id={id} />
<Forum_ReportPosting
postingId={postingId}
listReport={listReport as any}
/>
</>
);
}