UNPKG

@chakra-ui/hooks

Version:

React hooks for Chakra components

11 lines (8 loc) 171 B
'use client'; import { useRef } from 'react'; function useLatestRef(value) { const ref = useRef(null); ref.current = value; return ref; } export { useLatestRef };