📝 Add analytics doc
This commit is contained in:
21
apps/docs/snippets/loom-video.mdx
Normal file
21
apps/docs/snippets/loom-video.mdx
Normal 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>
|
||||
)
|
Reference in New Issue
Block a user