haixunMaster/app/(dashboard)/layout.tsx

5 lines
213 B
TypeScript
Raw Normal View History

2026-06-21 12:50:31 +00:00
import { DashboardShell } from "@/components/layout/dashboard-shell";
export default function DashboardLayout({ children }: { children: React.ReactNode }) {
return <DashboardShell>{children}</DashboardShell>;
}