1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| 'use strict';
|
| Object.defineProperty(exports, '__esModule', { value: true });
|
| const useFocus = (el) => {
| return {
| focus: () => {
| var _a, _b;
| (_b = (_a = el.value) == null ? void 0 : _a.focus) == null ? void 0 : _b.call(_a);
| }
| };
| };
|
| exports.useFocus = useFocus;
| //# sourceMappingURL=index.js.map
|
|