Files
NextEdu/src/app/(dashboard)/teacher/textbooks/[id]/error.tsx
SpecialX 6ea8ba763b feat(textbooks): add force-graph component and update graph components
- Add force-graph.tsx for new graph visualization

- Update graph-toolbar, knowledge-graph, knowledge-point-list, textbook-reader

- Update use-graph-data hook and types

- Update textbooks error boundary pages
2026-07-04 10:22:24 +08:00

13 lines
283 B
TypeScript

"use client"
import { RouteErrorBoundary } from "@/shared/components/route-error"
export default function TeacherTextbookDetailError({
reset,
}: {
error: Error & { digest?: string }
reset: () => void
}) {
return <RouteErrorBoundary reset={reset} namespace="textbooks" />
}