mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
18 lines
442 B
TypeScript
18 lines
442 B
TypeScript
// Use this to show which props have been changed within a component.
|
|
//
|
|
// Usage: usePropsDebugger(props);
|
|
|
|
import useEffectDebugger from './useEffectDebugger';
|
|
|
|
export default function usePropsDebugger(props: any) {
|
|
const dependencies: any[] = [];
|
|
const dependencyNames: string[] = [];
|
|
|
|
for (const k in props) {
|
|
dependencies.push(props[k]);
|
|
dependencyNames.push(k);
|
|
}
|
|
|
|
useEffectDebugger(() => {}, dependencies, dependencyNames);
|
|
}
|