Desskripsi:
- new page: other-report-commentar, other-report-posting, report-commentar, report-posting

# No Issue
This commit is contained in:
2025-07-15 11:24:57 +08:00
parent cce27c26f6
commit a0dad5618a
11 changed files with 308 additions and 20 deletions

View File

@@ -0,0 +1,20 @@
import { BaseBox, StackCustom, TextCustom } from "@/components";
import { listDummyReportForum } from "@/lib/dummy-data/forum/report-list";
import { View } from "react-native";
export default function Forum_ReportListSection() {
return (
<>
<BaseBox>
<StackCustom>
{listDummyReportForum.map((e, i) => (
<View key={i}>
<TextCustom>{e.title}</TextCustom>
<TextCustom>{e.desc}</TextCustom>
</View>
))}
</StackCustom>
</BaseBox>
</>
);
}