upd: projects

Deskripsi:
- membatasi akses user yang bukan anggota project

No Issues
This commit is contained in:
amel
2024-12-24 12:15:29 +08:00
parent 0fc6c2a3b0
commit 46e76ed463
8 changed files with 108 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
import { WrapLayoutProject } from "@/module/project";
export default async function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<WrapLayoutProject>
{children}
</WrapLayoutProject>
</>
);
}