UNPKG

301 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.default = useAutoFocus;
5
6var _react = require("react");
7
8function useAutoFocus(autoFocus, ref) {
9 (0, _react.useEffect)(() => {
10 if (autoFocus && ref.current) ref.current.focus(); // eslint-disable-next-line react-hooks/exhaustive-deps
11 }, []);
12}
\No newline at end of file