React component that generates mosaic from the given image source.
npm install react-mosaicGenerate mosaic images in react.



https://chitchu.github.io/react-mosaic/
``bash`
$ npm install react-mosaic
`jsx
import React from 'react';
import Mosaic from 'react-mosaic';
const imageSource = 'data:image/png;base64, ...'; //requires base64 encoded image
// If you don't pass a tileRenderer function the
// component will render each tile with a boring box.
const tileRenderer = props => (
);
const App = () => (
);
export default App;
``