Deskripsi:
- Upload ke stroage untuk job
## Np Issuee
This commit is contained in:
2024-09-19 15:59:21 +08:00
parent 128dc98839
commit f96d80d55d
153 changed files with 1369 additions and 1200 deletions

View File

@@ -1,12 +1,12 @@
import { user_funGetOneUserId } from "@/app_modules/fun_global/get_user_token";
import { funGetUserIdByToken } from "@/app_modules/_global/fun/get";
import { CreateProfile } from "@/app_modules/katalog/profile";
export default async function Page() {
const userId = await user_funGetOneUserId();
const userLoginId = await funGetUserIdByToken();
return (
<>
<CreateProfile userId={userId} />
<CreateProfile userLoginId={userLoginId} />
</>
);
}