Desc:
- Perubahan pengambilan data dari API ke Function use server
No issue
This commit is contained in:
2023-10-18 16:09:32 +08:00
parent 5f430786b4
commit 2a97165d1f
46 changed files with 398 additions and 345 deletions

View File

@@ -0,0 +1,10 @@
import { ProfileLayout } from "@/app_modules/katalog/profile";
export default function Layout({ children }: { children: any }) {
return (
<>
<ProfileLayout>{children}</ProfileLayout>
</>
);
}