Desc:
- Perubahan metode pengambilan data dari API ke use server
This commit is contained in:
2023-10-09 17:08:16 +08:00
parent ca66c3d2d8
commit 2b0ecc7bef
29 changed files with 87 additions and 128 deletions

View File

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

View File

@@ -0,0 +1,7 @@
import { CreateProfile } from "@/app_modules/katalog/profile";
export default async function Page() {
return <>
<CreateProfile/>
</>
}