UNPKG

rooks

Version:

Essential React custom hooks ⚓ to super charge your components!

11 lines (10 loc) 259 B
import { useRef } from "react"; /** * useRenderCount * @description Get the render count of a component * @see {@link https://react-hooks.org/docs/useRenderCount} */ function useRenderCount() { return ++useRef(0).current; } export { useRenderCount };