UNPKG

@gechiui/compose

Version:
15 lines (10 loc) 252 B
/** * 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;