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