UNPKG

react-player

Version:

A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion

12 lines (8 loc) 315 B
import BaseReactPlayer, { BaseReactPlayerProps } from './base.js' export interface VidyardConfig { options?: Record<string, object> } export interface VidyardPlayerProps extends BaseReactPlayerProps { config?: VidyardConfig } export default class VidyardPlayer extends BaseReactPlayer<VidyardPlayerProps> {}