13 lines
306 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|