6 lines
189 B
TypeScript
6 lines
189 B
TypeScript
export const YouTubeVideo = ({ id, children }: any) => (
|
|
<iframe src={'https://www.youtube.com/embed/' + id} className="w-full xl:h-96 md:h-80 h-64">
|
|
{children}
|
|
</iframe>
|
|
)
|