Initial commit
This commit is contained in:
18
frontend/src/components/layout/DashboardLayout.tsx
Normal file
18
frontend/src/components/layout/DashboardLayout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
// 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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user