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

@@ -7,3 +7,4 @@ export default function Layout({ children }: { children: any }) {
</>
);
}

View File

@@ -0,0 +1,9 @@
import { CreateProfile } from "@/app_modules/katalog/profile";
export default async function Page({params}: {params: {id: string}}) {
// console.log(params.id)
return <>
<CreateProfile userId={params.id}/>
</>
}

View File

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