UNPKG

@atlaskit/analytics-next

Version:

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

10 lines (9 loc) 226 B
import { useEffect, useRef } from 'react'; // Hook to track the number of renders in tests export const useRenderCounter = () => { const ref = useRef(1); useEffect(() => { ref.current++; }); return ref.current; };