import { cn } from "@/lib/utils/cn" import { MediaInfo } from "@/types/general" import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table" import { PendingVideoCard } from "../pending-video-card" export function PendingVideoList({ videos, onDelete, className = "", }: { videos: MediaInfo[] onDelete?: (video: MediaInfo) => void className?: string }) { return ( ID Updated at Title Description Status {videos.map((video) => ( ))}
) }