Skip to content

Instantly share code, notes, and snippets.

@mendes5
Created June 28, 2022 22:25
Show Gist options
  • Select an option

  • Save mendes5/aec200f4eb6cbbe86290b8f3c329dc23 to your computer and use it in GitHub Desktop.

Select an option

Save mendes5/aec200f4eb6cbbe86290b8f3c329dc23 to your computer and use it in GitHub Desktop.
Helps debugging react hooks re-render reasons
const useDebug = (deps: Record<string, any>) => {
Object.entries(deps).forEach(([key, value]) => {
useEffect(() => console.log(`${key} Changed`), [value]);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment