Merge pull request #191 from bipproduction/fix/bug/donasi

Fix bug job
This commit is contained in:
Bagasbanuna02
2024-12-12 14:46:56 +08:00
committed by GitHub
17 changed files with 256 additions and 169 deletions

View File

@@ -1,12 +1,9 @@
import { Job_ViewBeranda } from "@/app_modules/job";
import { job_getAllListPublish } from "@/app_modules/job/fun/get/get_all_publish";
export default async function Page() {
const listJob = await job_getAllListPublish({ page: 1 });
return (
<>
<Job_ViewBeranda listJob={listJob as any} />
<Job_ViewBeranda />
</>
);
}