mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-10-06 22:32:41 +07:00
9 lines
232 B
React
9 lines
232 B
React
import React from 'react';
|
|
import { VideoJSPlayerNew } from './components';
|
|
|
|
function VideoJSNew({ videoId = 'default-video', ...props }) {
|
|
return <VideoJSPlayerNew videoId={videoId} {...props} />;
|
|
}
|
|
|
|
export default VideoJSNew;
|