useRenderInfo ​
Hook for getting information about component rerender
debug
test coverage
Last changed: 7 days ago
Installation ​
Library
CLI
Manual
typescript
import { useRenderInfo } from '@siberiacancode/reactuse';
Usage ​
typescript
const rerenderInfo = useRenderInfo('Component');
Demo ​
Api ​
Parameters
Name | Type | Default | Note |
---|---|---|---|
name? | string | 'Unknown' | Component name |
log? | boolean | true | Toggle logging |
Returns
UseRenderInfoReturn
Type declaration ​
typescript
export interface UseRenderInfoReturn {
/** The name of the component */
component: string;
/** The number of renders */
renders: number;
/** The time since the last render */
sinceLast: number;
/** The timestamp of the render */
timestamp: number | null;
}
Source ​
Source • DemoContributors ​
D
H
G