UNPKG

react-use

Version:
15 lines (14 loc) 316 B
import { useEffect } from 'react'; var useLifecycles = function (mount, unmount) { useEffect(function () { if (mount) { mount(); } return function () { if (unmount) { unmount(); } }; }, []); }; export default useLifecycles;