import { PieChart, Pie, ResponsiveContainer, Tooltip } from 'recharts'; import * as React from 'react'; export class Chart extends React.Component { constructor(props: any) { super(props); } public render() { const data = this.props.data; return ( ) } }