react-well-plates
Render well plates in react.
Installation
$ npm install --save react-well-plates
There is a peer dependency on well-plates. This library is used to create a well plate and allows to associate data to each well.
Usage
import { WellPlate as WellPlateComponent } from 'react-well-plates';
import { WellPlate } from 'well-plates';
function () {
const wellPlate = new WellPlate({
rows: 8,
columns: 12
});
return <WellPlatesComponent wellPlate={wellPlate} />
}