mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-01-22 00:02:58 -05:00
feat: Major Upgrade to Video.js v8 — Chapters Functionality, Fixes and Improvements
This commit is contained in:
committed by
GitHub
parent
b39072c8ae
commit
a5e6e7b9ca
8
frontend-tools/video-js/src/VideoJS.jsx
Normal file
8
frontend-tools/video-js/src/VideoJS.jsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import React from 'react';
|
||||
import { VideoJSPlayer } from './components';
|
||||
|
||||
function VideoJS({ videoId = 'default-video', ...props }) {
|
||||
return <VideoJSPlayer videoId={videoId} {...props} />;
|
||||
}
|
||||
|
||||
export default VideoJS;
|
||||
Reference in New Issue
Block a user