Files
hipmi/src/app/dev/profile/edit/[id]/layout.tsx
Bagasbanuna02 cf9355e91f Fix: Db Profile
Deskripsi:
- Menghapus field imagesId dan imagesBackgroundId
- Menhapus table backgroundImage
- Menghapus component avatar dan header card yang lama
## No Issue
2024-10-03 15:09:38 +08:00

16 lines
271 B
TypeScript

import { EditProfileLayout } from "@/app_modules/katalog/profile";
export default async function Layout({
children,
params,
}: {
children: any;
params: { id: string };
}) {
return (
<>
<EditProfileLayout>{children}</EditProfileLayout>
</>
);
}