You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
653 B

type TableOfContentsProps = {
id: string;
};
export function YouTube({ id }: TableOfContentsProps) {
return (
<section className="mt-8 mb-10 flex w-full flex-col rounded bg-slate-300/50 dark:bg-slate-600/50 sm:w-fit">
<iframe
width="730"
height="480"
src={"https://www.youtube.com/embed/" + id}
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
>
</iframe>
</section>
);
}