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

8 lines (6 loc) 209 B
import React from 'react' import { render } from 'react-dom' import ReactPlayer from './index' export default function renderReactPlayer (container, props) { render(<ReactPlayer {...props} />, container) }