UNPKG

@atlaskit/analytics-next

Version:

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

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