folders and cases
This commit is contained in:
18
frontend/app/projects/[projectId]/layout.tsx
Normal file
18
frontend/app/projects/[projectId]/layout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Sidebar from "./sidebar";
|
||||
|
||||
export default function ProjectsLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<div className="flex border-t-1 min-h-screen">
|
||||
<Sidebar />
|
||||
<div className="flex">
|
||||
<div className="flex-grow bg-white rounded-lg">{children}</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user