fix
Desc: - Perubahan metode pengambilan data dari API ke use server
This commit is contained in:
9
src/app/dev/profile/create/layout.tsx
Normal file
9
src/app/dev/profile/create/layout.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ProfileLayout } from "@/app_modules/katalog/profile";
|
||||
|
||||
export default function Layout({ children }: { children: any }) {
|
||||
return (
|
||||
<>
|
||||
<ProfileLayout>{children}</ProfileLayout>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/profile/create/page.tsx
Normal file
7
src/app/dev/profile/create/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { CreateProfile } from "@/app_modules/katalog/profile";
|
||||
|
||||
export default async function Page() {
|
||||
return <>
|
||||
<CreateProfile/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user