import { extractYoutubeId } from "@lib/string.ts"; export const YoutubePlayer = ({ link }: { link: string }) => { const id = extractYoutubeId(link); return ( ); };