"use client" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { PieChart, Pie, Cell, ResponsiveContainer, Legend, Tooltip } from "recharts" export function UserValueDistribution() { // 这里应该从API获取实际数据 const data = [ { name: "高价值", value: 25, color: "hsl(var(--primary))" }, { name: "中价值", value: 45, color: "hsl(var(--secondary))" }, { name: "低价值", value: 30, color: "hsl(var(--muted))" }, ] return ( 用户价值分布
{data.map((entry, index) => ( ))}
) }