openreplay/frontend/app/components/Dashboard/Widgets/MostImpactfulErrors/Chart.js
2021-05-01 15:12:01 +05:30

11 lines
245 B
JavaScript

import { BarChart, Bar } from 'recharts';
const Chart = ({ data }) => (
<BarChart width={ 90 } height={ 30 } data={ data.chart }>
<Bar dataKey="count" fill="#A8E0DA" />
</BarChart>
);
Chart.displaName = 'Chart';
export default Chart;