Interface: ErrorBoundaryFallbackProps
Defined in: src/stores/error/ErrorBoundary.tsx:40
Props for a custom error boundary fallback component.
Propertiesโ
error?โ
readonly optional error?: Error;
Defined in: src/stores/error/ErrorBoundary.tsx:42
Error object that was caught by the boundary
onRetryโ
readonly onRetry: () => void;
Defined in: src/stores/error/ErrorBoundary.tsx:44
Function to retry rendering by resetting the error state
Returnsโ
void