@wordpress/compose
Version:
WordPress higher-order components (HOCs).
13 lines (11 loc) • 297 B
JavaScript
/**
* WordPress dependencies
*/
import { useRef } from '@wordpress/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