merca y ch

This commit is contained in:
Marcelo
2026-03-31 13:21:48 +00:00
commit 773bfab393
326 changed files with 52705 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import ProjectsWorkspaceTabs from "@/components/departments/ProjectsWorkspaceTabs";
export default function ProjectsDepartmentLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="space-y-5">
<ProjectsWorkspaceTabs />
{children}
</div>
);
}