mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import useEffectOnce from './useEffectOnce';
|
|
|
|
const useUnmount = (fn: () => void | undefined) => {
|
|
useEffectOnce(() => fn);
|
|
};
|
|
|
|
export default useUnmount;
|