import { DashboardShell } from "@/components/dashboard-shell" import { DashboardHeader } from "@/components/dashboard-header" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" import { ArrowLeft } from "lucide-react" import { Skeleton } from "@/components/ui/skeleton" import Link from "next/link" export default function PropDetailLoading() { return (
} text={}>
道具详情 批次管理 数据分析
{Array.from({ length: 6 }).map((_, i) => (
))}
{Array.from({ length: 8 }).map((_, i) => ( ))}
{Array.from({ length: 3 }).map((_, i) => (
{Array.from({ length: 8 }).map((_, j) => ( ))}
))}
) }