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

11 lines (8 loc) 237 B
import { useEffect, useLayoutEffect } from 'react'; const useOnMount = (handler) => { useEffect(handler, []); }; const useOnMountLayout = (handler) => { useLayoutEffect(handler, []); }; export { useOnMount, useOnMountLayout };