UNPKG

react-stable-ref

Version:

An assortment of utilities for testing against unstable references in React

8 lines (7 loc) 190 B
import { FC } from 'react'; export interface RenderCountProps { initialCount?: number; count?: number; } declare const RenderCount: FC<RenderCountProps>; export default RenderCount;