rsnext/examples/with-videojs/pages/index.tsx

23 lines
445 B
TypeScript

import Player from '../components/Player'
import PlayerCSS from '../components/PlayerCss'
export default function Index() {
const videoJsOptions = {
techOrder: ['youtube'],
autoplay: false,
controls: true,
sources: [
{
src: 'https://www.youtube.com/watch?v=IxQB14xVas0',
type: 'video/youtube',
},
],
}
return (
<>
<Player {...videoJsOptions} />
<PlayerCSS />
</>
)
}