useForceRender
The useForceRender hook allows you to trigger a re-render manually. More Info...
This hook can be helpful during optimizations, like in cases when we try to avoid useState in useEffect and work only with useRef.
import { useForceRender } from '@archibald/client';
const rerender = useForceRender();