deskripsi:
- fix server action to API notification to admin
- fix api created job
This commit is contained in:
2025-03-27 15:37:44 +08:00
parent d4049a9fca
commit c94ecd8f9c
20 changed files with 482 additions and 58 deletions

View File

@@ -1,9 +1,12 @@
import { funGetUserIdByToken } from "@/app_modules/_global/fun/get";
import { Job_Create } from "@/app_modules/job";
export default async function Page() {
const userLoginId = await funGetUserIdByToken();
return (
<>
<Job_Create />
<Job_Create userLoginId={userLoginId} />
</>
);
}