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