19 lines
418 B
TypeScript
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>
|
|
);
|
|
}
|
|
|