# Project Collaboration
## feat - Tampilan beranda & detailnya - Tampilan status & detailnya - Tampilan partisipasi & detailnya - Tampilan grup diskusi & detailnya ### No issue
This commit is contained in:
14
src/app/dev/colab/create/layout.tsx
Normal file
14
src/app/dev/colab/create/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { LayoutColab_Create } from "@/app_modules/colab";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutColab_Create>{children}</LayoutColab_Create>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/colab/create/page.tsx
Normal file
9
src/app/dev/colab/create/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Colab_Create } from "@/app_modules/colab";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<Colab_Create />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user