import type { ReactNode } from "react"; import { DashboardShell } from "@/components/layout/dashboard-shell"; type DashboardLayoutProps = { children: ReactNode; }; export default function DashboardLayout({ children }: DashboardLayoutProps) { return {children}; }