import React, { VideoHTMLAttributes, forwardRef } from 'react';
import classNames from 'classnames';
import * as css from './media.css';
export const Video = forwardRef>(
({ className, ...props }, ref) => (
// eslint-disable-next-line jsx-a11y/media-has-caption
)
);