import { useRef } from 'react'; export function useRenderCount() { const rendersCount = useRef(0); return ++rendersCount.current; }