Skip to content

Latest commit

Β 

History

History
34 lines (24 loc) Β· 560 Bytes

useError.md

File metadata and controls

34 lines (24 loc) Β· 560 Bytes

useError

React side-effect hook that returns an error dispatcher.

Usage

import { useError } from 'react-use';

const Demo = () => {
  const dispatchError = useError();

  const clickHandler = () => {
    dispatchError(new Error('Some error!'));
  };

  return <button onClick={clickHandler}>Click me to throw</button>;
};

// In parent app
const App = () => (
  <ErrorBoundary>
    <Demo />
  </ErrorBoundary>
);

Reference

const dispatchError = useError();
  • dispatchError β€” Callback of type (err: Error) => void