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 NewTrafficDistributionLoading() { return (

新建流量分发

{/* 步骤指示器骨架 */}
{[1, 2, 3].map((step) => (
))}
{/* 表单骨架 */}
) }