UNPKG

@winglet/react-utils

Version:

React utility library providing custom hooks, higher-order components (HOCs), and utility functions to enhance React application development with improved reusability and functionality

10 lines (7 loc) 159 B
import { useEffect } from 'react'; const useOnUnmount = (handler) => { useEffect(() => { return handler; }, []); }; export { useOnUnmount };