Files
peroxy_site/components/Youtube.tsx
2023-02-11 21:00:28 +01:00

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>
)