How to use Error Boundaries in React
What are Error Boundaries?
Error boundaries are React components that catch JavaScript errors anywhere in their child component tree. You typically use them to display a fallback UI (e.g., with a sorry message) or to log errors to a error reporting service like Sentry.
Error boundaries help you gracefully handle errors rather than show users a blank white screen. You can think of them like JavaScript’s catch
blocks but for React components.
Errors that error boundaries DO NOT catch
- Event handlers (learn more)
- Asynchronous code (e.g.
setTimeout
orsetInterval
) - Server side rendering
- Errors thrown in the error boundary itself (rather than its children)
Define an error boundary
Create a class component that responds to either of the lifecycle methods:
static getDerivedStateFromError()
– to display a fallback UI.componentDidCatch
() – for anything else such as logging errors somewhere.
Here’s an example:
You can then use it like this:
An example <ErrorScreen />
implementation might look like:
Now, whenever an error occurs inside the <MyPage>
tree, end users see a generic message (e.g., Something went wrong
) whilst developers can see the full error stack.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment