| 2 | import React from 'react' |
| 3 | |
| 4 | interface ErrorBoundaryProps { |
| 5 | renderError: (e: Error) => JSX.Element |
| 6 | onError?: (e: Error) => void |
| 7 | children?: ReactNode |
| 8 | } |
| 9 | |
| 10 | interface ErrorBoundaryState { |
| 11 | error?: Error |
nothing calls this directly
no outgoing calls
no test coverage detected