UNPKG

@flying-studio/use-pagination

Version:
8 lines (7 loc) 158 B
import { useRef } from 'react'; function useLatest(value) { var ref = useRef(value); ref.current = value; return ref; } export default useLatest;