import React from 'react'; import { Chart as ChartJS, ArcElement, Tooltip, Legend } from 'chart.js'; import { Pie } from 'react-chartjs-2'; export const PieCircle = (): JSX.Element => { ChartJS.register(ArcElement, Tooltip, Legend); return ( ); };