UNPKG

react-roving-focus

Version:

Flexible roving focus for React with support for any fixed or responsive layout.

5 lines (4 loc) 196 B
/** * Custom useRef hook that returns an existing ref (if provided) or a new one. */ export declare function useNewOrExistingRef<T>(existingRef?: React.RefObject<T>): React.RefObject<T | null>;