# Project Collaboration

## feat
- Tampilan beranda & detailnya
- Tampilan status & detailnya
- Tampilan partisipasi & detailnya
- Tampilan grup diskusi & detailnya
### No issue
This commit is contained in:
2024-04-03 10:26:40 +08:00
parent d767307291
commit 4ab4a71961
87 changed files with 2656 additions and 34 deletions

View 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>
</>
);
}

View File

@@ -0,0 +1,9 @@
import { Colab_Create } from "@/app_modules/colab";
export default async function Page() {
return (
<>
<Colab_Create />
</>
);
}