- 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
13 lines
283 B
TypeScript
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" />
|
|
}
|