UNPKG

203 BJavaScriptView Raw
1import { useEffect } from 'react';
2
3export default function useEffectAsync(effect, inputs) {
4 useEffect(() => {
5 effect();
6 // eslint-disable-next-line react-hooks/exhaustive-deps
7 }, inputs);
8}