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 DepartmentWorkspaceTabs from "@/components/layout/DepartmentWorkspaceTabs";
export default function DepartmentsLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div>
<DepartmentWorkspaceTabs />
{children}
</div>
);
}