video-flow-b/app/create/layout.tsx
2025-06-23 20:47:46 +08:00

9 lines
221 B
TypeScript

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