import React from 'react'; import PropTypes from 'prop-types'; import _ from 'lodash'; import { ResponsiveContainer, BarChart, Bar } from './../../../../components/recharts'; import colors from './../../../../colors'; const TinyBarChart = (props) => { const data = _.times(40, () => ({ pv: 20+Math.random() * 100 })); return ( ) }; TinyBarChart.propTypes = { barColor: PropTypes.string }; TinyBarChart.defaultProps = { barColor: "200" }; export { TinyBarChart };