Mosaic Video
A simple, lightweight wrapper for the HTML media element, specifically targetting video functionality. There is no styling included in this wrapper.
npm i mosaic-video --save
This module is currently in pre-alpha at version 0.1.2.
Sample usage:
import './css/main.css';
import React from 'react';
import ReactDOM from 'react-dom';
import Mosaic from 'mosaic-video';
const App = () => (
<Mosaic
source="video/1.mov"
/>
);
ReactDOM.render(<App/>, document.getElementById('app'));
Feel free to create an issue, or message me at @mskalandunas if you have any questions.