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