mirror of
https://github.com/streamich/react-use.git
synced 2026-01-25 14:17:16 +00:00
10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
import {useEffect} from './react';
|
|
|
|
const useUnmount = (unmount) => {
|
|
useEffect(() => () => {
|
|
if (unmount) unmount();
|
|
}, []);
|
|
};
|
|
|
|
export default useUnmount;
|