Desc: - Perubahan pengambilan data dari API ke Function use server No issue
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import { ProfileLayout } from "@/app_modules/katalog/profile";
|
|
|
|
export default function Layout({ children }: { children: any }) {
|
|
return (
|
|
<>
|
|
<ProfileLayout>{children}</ProfileLayout>
|
|
</>
|
|
);
|
|
}
|
|
|