import { FC } from 'react'; import { Stats } from '../types'; import { DoughnutChart } from './DoughnutChart'; import { ChartCard } from './ChartCard'; interface DoughnutChartCardProps { title: string; stats: Stats; } export const DoughnutChartCard: FC = ({ title, stats }) => ( );