Files
hipmi-mobile/app/(application)/(user)/forum/index.tsx
2025-11-26 16:13:05 +08:00

13 lines
306 B
TypeScript

/* eslint-disable react-hooks/exhaustive-deps */
import Forum_ViewBeranda from "@/screens/Forum/ViewBeranda";
import Forum_ViewBeranda2 from "@/screens/Forum/ViewBeranda2";
export default function Forum() {
return (
<>
{/* <Forum_ViewBeranda /> */}
<Forum_ViewBeranda2 />
</>
);
}