Forum & User Search – User - app/(application)/(user)/forum/index.tsx - app/(application)/(user)/user-search/index.tsx Global & Core - app/+not-found.tsx - screens/RootLayout/AppRoot.tsx - constants/constans-value.ts Component - components/Image/AvatarComp.tsx API Client - service/api-client/api-user.ts Untracked Files - QWEN.md - helpers/ - hooks/use-pagination.tsx - screens/Forum/ViewBeranda3.tsx - screens/UserSeach/ ### No Issue
15 lines
406 B
TypeScript
15 lines
406 B
TypeScript
/* eslint-disable react-hooks/exhaustive-deps */
|
|
import Forum_ViewBeranda from "@/screens/Forum/ViewBeranda";
|
|
import Forum_ViewBeranda2 from "@/screens/Forum/ViewBeranda2";
|
|
import Forum_ViewBeranda3 from "@/screens/Forum/ViewBeranda3";
|
|
|
|
export default function Forum() {
|
|
return (
|
|
<>
|
|
{/* <Forum_ViewBeranda /> */}
|
|
{/* <Forum_ViewBeranda2 /> */}
|
|
<Forum_ViewBeranda3 />
|
|
</>
|
|
);
|
|
}
|