UNPKG

@react-hookz/web

Version:

React hooks done right, for browser and SSR.

13 lines (12 loc) 305 B
import { useEffect } from 'react'; /** * Run effect only when component is first mounted. * * @param effect Effector to run on mount */ export function useMountEffect(effect) { useEffect(function () { effect(); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); }