Desc:
- Tampilan katalog
No issue
This commit is contained in:
2023-10-03 17:48:02 +08:00
parent fa4193dcb8
commit 907b52e9d4
4 changed files with 32 additions and 0 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/>
</>
}

View File

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

View File

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