Files
hipmi/src/app/dev/profile/edit/[id]/page.tsx
Bagasbanuna02 9ceb4867e3 Fix profile
Deskripsi:
- Fix load image saat di buka
2024-12-11 13:58:32 +08:00

14 lines
440 B
TypeScript

import EditProfile from "@/app_modules/katalog/profile/edit/view";
import { Profile_getOneProfileAndUserById } from "@/app_modules/katalog/profile/fun/get/get_one_user_profile";
export default async function Page({ params }: { params: { id: string } }) {
let profileId = params.id;
const dataProfile = await Profile_getOneProfileAndUserById(profileId);
return (
<>
<EditProfile data={dataProfile as any} />
</>
);
}