UNPKG

@gilbarbara/hooks

Version:

Collection of useful React hooks

9 lines (7 loc) 193 B
import { useEffect } from 'react'; export function useMount(callback: () => void) { useEffect(() => { callback(); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); }