Last active
January 3, 2025 05:02
-
-
Save esemeniuc/0586ff44995f370064bebf90134948ef to your computer and use it in GitHub Desktop.
ErrorBoundary for React 16 using Typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {ErrorInfo} from 'react'; | |
export default class ErrorBoundary extends React.Component<{}, { hasError: boolean }> { | |
constructor(props: {}) { | |
super(props); | |
this.state = {hasError: false}; | |
} | |
static getDerivedStateFromError(error: Error) { // Update state so the next render will show the fallback UI. | |
return {hasError: true}; | |
} | |
componentDidCatch(error: Error, errorInfo: ErrorInfo) { // You can also log the error to an error reporting service | |
// logErrorToMyService(error, errorInfo); | |
} | |
render() { | |
if (this.state.hasError) { // You can render any custom fallback UI | |
return <h1>Something went wrong.</h1>; | |
} | |
return this.props.children; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you. Grateful I found this.
One thing is missing though.
children
needs to be added to props:Or maybe define an instance for both state and props: