"use client" import { Card, CardContent } from "@/components/ui/card" import { LineChart, BarChart } from "@/components/charts" interface UserBehaviorAnalysisProps { timeRange: string } export function UserBehaviorAnalysis({ timeRange }: UserBehaviorAnalysisProps) { // 这里应该根据timeRange从API获取实际数据 return (