A React component for catching and reporting errors
npm install @adhawk/react-error-boundaryThis packages export a React component which will wrap React components to
catch errors. A user is shown a dialog to give feedback when they experience an
error.
``sh`
yarn add @adhawk/error-boundary
`javascript
import { ErrorBoundary } from "@adhawk/error-boundary";
ReactDOM.render(
document.querySelector("root"),
);
``