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

8 lines (5 loc) 125 B
import { useEffect } from 'react'; const useOnMount = (handler) => { useEffect(handler, []); }; export { useOnMount };