UNPKG

232 BJavaScriptView Raw
1import { useEffect } from 'react';
2export default function useAutoFocus(autoFocus, ref) {
3 useEffect(() => {
4 if (autoFocus && ref.current) ref.current.focus(); // eslint-disable-next-line react-hooks/exhaustive-deps
5 }, []);
6}
\No newline at end of file