import YouTubeDropdown from "./YouTubeDropdown"; interface YouTubeCardProps { videoId: string; url: string; title: string; showEmbed?: boolean; onConvertToLink: () => void; onDelete: () => void; onUpdate: (url: string, title: string) => void; } const YouTubeCard = ({ videoId, url, title, showEmbed = true, onConvertToLink, onDelete, onUpdate, }: YouTubeCardProps) => { return (