import { useTranslations } from 'next-intl'; import { PieChart, Pie, Cell, ResponsiveContainer } from 'recharts'; export const PieChartComponent = ({ data }: { data: { name: string, value: number, color: string }[] }) => { const t = useTranslations('Global'); return (