@react-hookz/web
Version:
React hooks done right, for browser and SSR.
9 lines (8 loc) • 394 B
TypeScript
import { type DependencyList } from 'react';
/**
* This hook provides a console log when the component mounts, updates and unmounts.
*
* @param componentName Provides the name of the component in which the life cycle is being logged
* @param deps Dependencies list, as for `useEffect` hook
*/
export declare function useLifecycleLogger(componentName: string, deps?: DependencyList): void;