import React from 'react'; import PropTypes from 'prop-types'; import { PieChart, Pie, Tooltip, ResponsiveContainer } from 'recharts'; import withTitle from './withTitle'; const renderCustomLabel = ({ name }) => name; const ChartPie = ({ data }) => ( ); ChartPie.propTypes = { data: PropTypes.arrayOf(PropTypes.object.isRequired).isRequired, }; export default withTitle(ChartPie);