2
0
Files
bot/apps/docs/src/js/YoutubeEmbed.jsx
Baptiste Arnaud b1d30fcb3b docs: 📝 Condition block
2022-04-09 09:47:49 -05:00

18 lines
426 B
JavaScript

import React from 'react'
export const YoutubeEmbed = ({ videoId }) => (
<iframe
width="100%"
height="500"
src={
videoId.startsWith('https')
? videoId
: `https://www.youtube.com/embed/${videoId}`
}
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
style={{ borderRadius: '0.5rem' }}
/>
)