UnlyEd/next-right-now-admin

View on GitHub
src/hooks/useForceUpdate.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { useState } from 'react';

const useForceUpdate = () => {
  const [value, setValue] = useState(0); // integer state
  return () => setValue(value => ++value); // update the state to force render
};

export default useForceUpdate;