import React from 'react'; import { Chart } from 'react-chartjs-2'; import { PRIMARY_COLOR } from '../../_constants/common'; import { Chart as ChartJS, registerables } from 'chart.js'; ChartJS.register(...registerables); export default function RDoughnutChart({data = [], ...other}) { if (!data?.length) { return null } return ; }