mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-08 16:38:54 -05:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
import React from 'react';
|
|
import { VideoJSPlayer } from './components';
|
|
|
|
function VideoJS({ videoId = 'default-video', ...props }) {
|
|
return <VideoJSPlayer videoId={videoId} {...props} />;
|
|
}
|
|
|
|
export default VideoJS;
|