import { Modal } from './Modal'; type VideoModalProps = { videoId: string; onClose: () => void; }; export function VideoModal(props: VideoModalProps) { const { videoId, onClose } = props; return (