import { Sidebar } from './sidebar'; import { Header } from './header'; interface DashboardShellProps { children: React.ReactNode; title: string; } export function DashboardShell({ children, title }: DashboardShellProps) { return (