video-flow-b/app/home/layout.tsx
2025-10-17 15:43:40 +08:00

10 lines
219 B
TypeScript

import { DashboardLayout } from '@/components/layout/dashboard-layout';
export default function HomeLayout({
children,
}: {
children: React.ReactNode;
}) {
return <DashboardLayout>{children}</DashboardLayout>;
}