UNPKG

@nex-ui/hooks

Version:

A collection of React Hooks for Nex UI components.

12 lines (9 loc) 225 B
import { useEffect } from 'react'; import { useLatest } from './useLatest.mjs'; const useUnmount = (fn)=>{ const fnRef = useLatest(fn); useEffect(()=>fnRef.current, [ fnRef ]); }; export { useUnmount };