@gechiui/compose
Version:
GeChiUI higher-order components (HOCs).
13 lines (10 loc) • 292 B
JavaScript
/**
* GeChiUI dependencies
*/
import { useRef } from '@gechiui/element';
function useConstrainedTabbing() {
const ref = useRef(); // Do nothing on mobile as tabbing is not a mobile behavior.
return ref;
}
export default useConstrainedTabbing;
//# sourceMappingURL=index.native.js.map