UNPKG

@atlaskit/analytics-next

Version:

React components, HOCs and hooks to assist with tracking user activity with React components

6 lines 140 B
import { useRef } from 'react'; export const useTrackedRef = value => { const ref = useRef(value); ref.current = value; return ref; };