mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-27 09:57:40 +00:00
docs: add video to quickstart (#7512)
This commit is contained in:
17
docs/src/components/player.jsx
Normal file
17
docs/src/components/player.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
import ReactPlayer from 'react-player'
|
||||
|
||||
export function ResponsivePlayer({ url, ...props }) {
|
||||
|
||||
return (
|
||||
<div className='player-wrapper'>
|
||||
<ReactPlayer
|
||||
className='react-player'
|
||||
url={url}
|
||||
width='100%'
|
||||
height='100%'
|
||||
{...props}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user