useRenderInfo ​
Hook for getting information about component rerender
lifecycle
test coverage
Last changed: last month
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 {
component: string;
renders: number;
sinceLast: number;
timestamp: number | null;
}
Source ​
Source • DemoContributors ​
D
H
G