mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
feat(useFirstMountState): hook to track if render is first; feat(useRendersCount): hook to track renders count; refactor(useUpdateEffect): now uses useFirstMountState hook; refactor(usePreviousDistinct): now uses with useFirstMountState hook; docs: update readme;
523 B
523 B
useRendersCount
Tracks compontent's renders count including the first render.
Usage
import * as React from 'react';
import { useRendersCount } from "react-use";
const Demo = () => {
const update = useUpdate();
const rendersCount = useRendersCount();
return (
<div>
<span>Renders count: {rendersCount}</span>
<br />
<button onClick={update}>re-render</button>
</div>
);
};
Reference
const rendersCount: number = useRendersCount();