import classNames from "classnames"; import ReactPlayer from "react-player/youtube"; import type { YouTubePlayerProps } from "react-player/youtube"; import styles from "./YouTubeEmbed.module.css"; type YouTubeEmbedProps = Partial & { id: string; className?: string; }; const YouTubeEmbed = ({ id, className, ...rest }: YouTubeEmbedProps) => (
); export default YouTubeEmbed;