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

15 lines (11 loc) 363 B
import BaseReactPlayer, { BaseReactPlayerProps } from './base.js' export interface FacebookConfig { appId?: string version?: string playerId?: string attributes?: object } export interface FacebookPlayerProps extends BaseReactPlayerProps { config?: FacebookConfig } export default class FacebookPlayer extends BaseReactPlayer<FacebookPlayerProps> {}