Created
February 3, 2021 09:51
-
-
Save caelinsutch/d8e909ffede4cab06f36722c7eafc5c8 to your computer and use it in GitHub Desktop.
Error Boundary (from react docs)
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
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>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