UNPKG

@react-hookz/web

Version:

React hooks done right, for browser and SSR.

9 lines (8 loc) 207 B
import { useRef } from 'react'; /** * Tracks component's render count including first render. */ export function useRenderCount() { const rendersCount = useRef(0); return ++rendersCount.current; }