fix folder

deskripsi:
- ganti nama folder (user) ke (auth)
- hapus folder auth
This commit is contained in:
2025-02-05 15:34:06 +08:00
parent 6dc4e7afc3
commit d7252b9fb3
21 changed files with 30 additions and 102 deletions

View File

@@ -0,0 +1,12 @@
import { funGetUserIdByToken } from "@/app_modules/_global/fun/get";
import WaitingRoom_View from "@/app_modules/waiting_room/view";
export default async function Page() {
const userLoginId = await funGetUserIdByToken();
return (
<>
<WaitingRoom_View userLoginId={userLoginId as string} />
</>
);
}