import { DashboardLayout } from "./DashboardLayout" interface DashboardProps { onLogout: () => void currentRoute: string } export function Dashboard({ onLogout, currentRoute }: DashboardProps) { return }