index.mjs 203 B

12345678910
  1. //#region ../../packages/hooks/use-focus/index.ts
  2. const useFocus = (el) => {
  3. return { focus: () => {
  4. el.value?.focus?.();
  5. } };
  6. };
  7. //#endregion
  8. export { useFocus };
  9. //# sourceMappingURL=index.mjs.map