react-use-error-boundary icon indicating copy to clipboard operation
react-use-error-boundary copied to clipboard

A React hook for error boundaries in function components

Results 1 react-use-error-boundary issues
Sort by recently updated
recently updated
newest added

I have approximately the following setup: const App = withErrorBoundary(({ children }) => { const [error, resetError] = useErrorBoundary((innerError, errorInfo) => {debugger}); ...... return {error && {JSON.stringify(error)} Try again }...