react-use/src/useUnmount.ts
2018-10-27 23:39:33 +02:00

10 lines
165 B
TypeScript

import {useEffect} from './react';
const useUnmount = (unmount) => {
useEffect(() => () => {
if (unmount) unmount();
}, []);
};
export default useUnmount;