feat
Desc: - Tampilan katalog No issue
This commit is contained in:
9
src/app/dev/katalog/profile/create/layout.tsx
Normal file
9
src/app/dev/katalog/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/katalog/profile/create/page.tsx
Normal file
7
src/app/dev/katalog/profile/create/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { CreateProfile } from "@/app_modules/katalog/profile";
|
||||||
|
|
||||||
|
export default async function Page() {
|
||||||
|
return <>
|
||||||
|
<CreateProfile/>
|
||||||
|
</>
|
||||||
|
}
|
||||||
9
src/app/dev/katalog/view/layout.tsx
Normal file
9
src/app/dev/katalog/view/layout.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { KatalogLayout } from "@/app_modules/katalog/view";
|
||||||
|
|
||||||
|
export default async function Layout({ children }: { children: any }) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<KatalogLayout>{children}</KatalogLayout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
7
src/app/dev/katalog/view/page.tsx
Normal file
7
src/app/dev/katalog/view/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { KatalogView } from "@/app_modules/katalog/view";
|
||||||
|
|
||||||
|
export default async function Page() {
|
||||||
|
return <>
|
||||||
|
<KatalogView/>
|
||||||
|
</>
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user