import { Card, CardContent } from "@/components/ui/card" import { Skeleton } from "@/components/ui/skeleton" import { ChevronLeft } from "lucide-react" import { Button } from "@/components/ui/button" export default function TrafficDistributionLoading() { return (

流量分发

{/* 数据概览骨架 */}
{/* 分类标签页骨架 */} {/* 计划列表骨架 */}
{Array.from({ length: 3 }).map((_, i) => (
))}
) }