Files
dbis_core/frontend/src/components/layout/DashboardLayout.tsx
defiQUG 849e6a8357
Some checks failed
CI / test (push) Has been cancelled
CI / security (push) Has been cancelled
CI / build (push) Has been cancelled
Initial commit
2025-12-12 15:02:56 -08:00

19 lines
418 B
TypeScript

// Dashboard Layout Component (3-column grid)
import { ReactNode } from 'react';
import { clsx } from 'clsx';
import './DashboardLayout.css';
interface DashboardLayoutProps {
children: ReactNode;
className?: string;
}
export default function DashboardLayout({ children, className }: DashboardLayoutProps) {
return (
<div className={clsx('dashboard-layout', className)}>
{children}
</div>
);
}