Skip to content

Instantly share code, notes, and snippets.

@wstam88
Created October 2, 2018 07:07
Show Gist options
  • Save wstam88/725454f6995f1b372286261be1160fe0 to your computer and use it in GitHub Desktop.
Save wstam88/725454f6995f1b372286261be1160fe0 to your computer and use it in GitHub Desktop.
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