forked from 77media/video-flow
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import { DashboardLayout } from '@/components/layout/dashboard-layout';
|
|
|
|
export default function CreateLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|