import React, { Component } from 'react'; import ReactApexChart from 'react-apexcharts'; interface State { series: { name: string; data: number[] }[]; options: { chart: { type: string; height: number }; dataLabels: { enabled: boolean }; }; } class ApexChartDonut extends Component<{}, State> { render() { return (