Introduction

Let's take a look at how to catch errors anywhere in the component tree, log those errors, and display a fallback UI instead of the component tree that crashed.

We'll cover the following...

What are Error Boundaries?

Whenever an error occurs, and an exception is thrown in a React ...