import YouTube from 'react-youtube'; function getVideoId(url: string) { const regex = /(youtu.*be.*)\/(watch\?v=|embed\/|v|shorts|)(.*?((?=[?])|$))/gm; return regex.exec(url)[3]; } export const YoutubePreview = ({ url }: { url: string }) => { const id = getVideoId(url); return (