UNPKG

react-widgets

Version:

An à la carte set of polished, extensible, and accessible inputs built for React

6 lines 232 B
import { useEffect } from 'react'; export default function useAutoFocus(autoFocus, ref) { useEffect(() => { if (autoFocus && ref.current) ref.current.focus(); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); }