import React, { FC } from 'react'; import { PieChart, Pie, Tooltip, ResponsiveContainer } from 'recharts'; import withTitle from './withTitle'; interface Props { data: any[]; // TODO: types } const renderCustomLabel = ({ name }) => name; const ChartPie: FC = ({ data }) => ( ); export default withTitle(ChartPie);