bar-chart-bars-react
v1.0.1
Published
bar-chart-bars-react React component
Downloads
2
Maintainers
Readme
bar-chart-bars-react
Installation
npm install --save bar-chart-bar-react # using NPM
yarn add bar-chart-bar-react # using yarn
Example use
import React, {Component} from 'react';
import {Bar} from 'bar-chart-bar-react';
{
Object.keys(data).filter((key, index) => {return index <= 5}).map(key =>
{
return(
<Bar
barKey={key}
data={data}
/>
)
})
}
Contributions
Pull requests are welcome!