2
0
Files
bot/apps/docs/snippets/loom-video.mdx
Baptiste Arnaud 006b9d6658 📝 Add analytics doc
2024-01-10 11:58:08 +01:00

22 lines
399 B
Plaintext

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