import { memo } from "react"; import { cn } from "@/lib/utils"; interface Props { videoIds: string[]; } const MemoYoutubeEmbedListView: React.FC = ({ videoIds }: Props) => { if (!videoIds || videoIds.length === 0) { return null; } const EmbedCard = ({ videoId, className }: { videoId: string; className?: string }) => { return (