Awesome Multimedia Components for React
npm install reactjs-media#####
Interactive media in React. This library is a collection of media components that can be used to display media on the web.
Try it out on CodeSandbox
It includes currently only has a video and audio component.
Available components:
- Video
- Audio
#### Installation
To install go to your terminal and run this script
``bash`npm
$ npm install reactjs-mediayarn
$ yarn add reactjs-media
#### Setup
In here we shall show a small demo on how to setup a simple video component. We shall create the default component.
`jsx
import React from 'react';
import { Video } from 'reactjs-media';
const App = () => {
return (
``
If you want to learn more, Checkout the offical Documentation
___
The source code can be found on Github.