Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sericaia/react-html-video

React HTML5 Video
https://github.com/sericaia/react-html-video

Last synced: 19 days ago
JSON representation

React HTML5 Video

Awesome Lists containing this project

README

        

### Getting started

```shell
npm install
npm start
```

#### Example

```js
import React, { Component } from 'react'
import Video from './Video'

export default class VideoExample extends Component {
constructor (props) {
super(props)

this.state = {}
}

render () {
var videoSrc = [
'bunny.mp4',
'bunny.ogg'
]

return (

)
}
}
```