| 3 | import { AppToaster } from './common/toaster'; |
| 4 | |
| 5 | interface Props { |
| 6 | children: ReactNode; |
| 7 | } |
| 8 | |
| 9 | class ErrorBoundary extends Component<Props> { |
| 10 | componentDidCatch(error: Error, errorInfo: ErrorInfo) { |
nothing calls this directly
no outgoing calls
no test coverage detected