Created
May 14, 2023 19:02
-
-
Save vitorbritto/2a26759ce754776951db436799b14b6f to your computer and use it in GitHub Desktop.
Source Error Boundary
This file contains 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
class ErrorBoundary extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { hasError: false }; | |
} | |
static getDerivedStateFromError(error) { | |
// Update state so the next render will show the fallback UI. | |
return { hasError: true }; | |
} | |
componentDidCatch(error, 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>We are working on the issue.</h1>; | |
} | |
return this.props.children; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment