"use client"; import Link from "next/link"; import { TriangleAlert } from "lucide-react"; import { EmptyState } from "@/components/ui/EmptyState"; import { Button } from "@/components/ui/Button"; import { buttonClass } from "@/lib/ui/variants"; interface ErrorBoundaryProps { error: Error & { digest?: string }; reset: () => void; } export default function Error({ reset }: ErrorBoundaryProps) { return (
返回作品库
} />
); }