2
0

📝 Add analytics doc

This commit is contained in:
Baptiste Arnaud
2024-01-10 11:51:04 +01:00
parent 459dac4224
commit 006b9d6658
9 changed files with 51 additions and 134 deletions

View File

@ -0,0 +1,21 @@
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>
)