import React from 'react'; import _ from 'lodash'; import { ResponsiveContainer, LineChart, Line, Dot } from './../../../components/recharts'; import colors from './../../../colors'; const data = _.times(20, () => ({ pv: Math.random() * 100 })); // eslint-disable-next-line react/prop-types const generateDot = ({stroke, ...other}) => ( ); const TinyLineChart = () => ( ); export { TinyLineChart };