import React from 'react'; import _ from 'lodash'; import { ResponsiveContainer, AreaChart, Area } from 'recharts'; import colors from './../../../colors'; const data = _.times(20, () => ({ pv: Math.random() * 100 })); const TinyAreaChartSpend = () => ( ); export { TinyAreaChartSpend };