import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Skeleton } from "@/components/ui/skeleton" import { ChevronLeft } from "lucide-react" import { Button } from "@/components/ui/button" export default function TrafficDistributionDetailLoading() { return (
{/* 标签页骨架 */} {/* 内容骨架 */}
{/* 数据卡片骨架 */}
{/* 图表骨架 */}
{/* 基本信息骨架 */}
{[1, 2, 3, 4].map((i) => (
))}
{[1, 2, 3].map((i) => ( ))}
) }