Deskripsi: - Menghapus field imagesId dan imagesBackgroundId - Menhapus table backgroundImage - Menghapus component avatar dan header card yang lama ## No Issue
16 lines
271 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|