aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reactHelper.js
blob: d8e92004651b29a83acadfa74f112a0f67909fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { useRef, useEffect } from 'react';

export const usePrevious = (value) => {
  const ref = useRef();
  useEffect(() => {
    ref.current = value;
  });
  return ref.current;
};

export const useEffectAsync = (effect, deps) => {
  useEffect(() => {
    effect();
  }, deps); // eslint-disable-line react-hooks/exhaustive-deps
};