"use client"; import { ResponsiveContainer, PieChart, Pie, Cell, Tooltip, Legend } from "recharts"; const COLORS = ["#22d3ee", "#34d399", "#a78bfa", "#fbbf24", "#f87171", "#60a5fa", "#f472b6", "#facc15"]; export function CountryPie({ data }: { data: { country: string; hits: number }[] }) { if (data.length === 0) return
Noch keine Daten.
; return (