File size: 296 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { useReducer } from 'react';
/**
* Forces a React update that triggers a rerender.
* @link https://reactjs.org/docs/hooks-faq.html#is-there-something-like-forceupdate
*/
export function useForceUpdate() {
const [, forceUpdate] = useReducer((x) => x + 1, 0);
return forceUpdate;
}
|