UNPKG

use-state-ref

Version:

Convert a state to a ref when there need to a indirect use the state

3 lines (2 loc) 99 B
import { RefObject } from 'react'; export declare function useStateRef<T>(value: T): RefObject<T>;