# 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/edit/[id]/layout.tsx
Normal file
14
src/app/dev/colab/edit/[id]/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { LayoutColab_Edit } from "@/app_modules/colab";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutColab_Edit>{children}</LayoutColab_Edit>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/colab/edit/[id]/page.tsx
Normal file
7
src/app/dev/colab/edit/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Colab_Edit } from "@/app_modules/colab";
|
||||
|
||||
export default async function Page(){
|
||||
return<>
|
||||
<Colab_Edit/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user