UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

9 lines (8 loc) 204 B
const getFocusableChildren = (el) => el?.querySelectorAll("input, button, select, textarea, a[href]") || []; const setFocusTo = (el) => { el.focus(); }; export { getFocusableChildren, setFocusTo };