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) 183 B
import { useLayoutEffect } from 'react'; const useOnUnmountLayout = (handler) => { useLayoutEffect(() => { return handler; }, []); }; export { useOnUnmountLayout };