forked from 77media/video-flow
12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
import CreateVideo from '@/components/pages/create-video/CreateVideo';
|
|
import { DashboardLayout } from '@/components/layout/dashboard-layout';
|
|
|
|
export default function CreatePage() {
|
|
return (
|
|
<DashboardLayout>
|
|
<div className='w-full h-full overflow-y-auto pb-4'>
|
|
<CreateVideo />
|
|
</div>
|
|
</DashboardLayout>
|
|
);
|
|
} |