"use client" import { useState } from "react" import { VideosQueue } from "@/components/business/videos/video-table" import { RefreshStudio } from "@/components/business/refresh" import { VideoForm } from "@/components/business/video-form" import { Video } from "@/app/types" import { VideoPlayer } from "@/components/business/video-player" export default function Main({ videos }: { videos: Video[] }) { const [selectedVideo, selectVideo] = useState