2
0
Files
bot/apps/docs/snippets/youtube-video.mdx
Baptiste Arnaud fdbd9c08a3 📝 Add Transcript doc
2024-06-10 17:46:29 +02:00

23 lines
434 B
Plaintext

export const YoutubeVideo = ({ id }) => (
<div
style={{
position: 'relative',
paddingBottom: '64.63195691202873%',
height: 0,
}}
>
<iframe
src={`https://www.youtube.com/embed/${id}`}
allowFullScreen
style={{
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
borderRadius: '8px',
}}
></iframe>
</div>
)