Skip to content

Instantly share code, notes, and snippets.

@Harshmakadia
Last active August 29, 2018 13:02
Show Gist options
  • Save Harshmakadia/700aa431477c79f2421465f0f623477d to your computer and use it in GitHub Desktop.
Save Harshmakadia/700aa431477c79f2421465f0f623477d to your computer and use it in GitHub Desktop.
ComponentDidCatch()
class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = { hasError: false };
}
componentDidCatch(error, info) {
// Display fallback UI
this.setState({ hasError: true });
// You can also log the error to an error reporting service
logErrorToMyService(error, info);
}
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