9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
export const YouTubeVideo = ({id, children} : any) => (
|
|
<iframe
|
|
src={'https://www.youtube.com/embed/' + id}
|
|
width="640"
|
|
height="360"
|
|
>
|
|
{children}
|
|
</iframe>
|
|
) |