Files
mediacms/frontend-tools/video-js/src/VideoJSNew.jsx
T
2025-10-06 11:42:07 +03:00

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;