React components for Video.js
yarn add @makhataibar/react-video.js
import VideoPlayer from '@makhataibar/react-video.js'
const videoJsOptions = {
autoplay: true,
controls: true,
sources: [{
src: '/path/to/video.mp4',
type: 'video/mp4'
}]
}
return <VideoPlayer { ...videoJsOptions } />