useWhyDidYouUpdate
This hook makes it easy to see which prop changes are causing a component to re-render. If a function is particularly expensive to run and you know it renders the same results given the same props you can use the React.memo
higher order component, as we've done with the Counter
component in the below example. In this case if you're still seeing re-renders that seem unnecessary you can drop in the useWhyDidYouUpdate
hook and check your console to see which props changed between renders and view their previous/current values.
Usage
Here's how you can use the useWhyDidYouUpdate
hook in a React component:
In this example, the useWhyDidYouUpdate
hook takes two arguments: the name of the component and an object containing the props to track. The ExampleComponent
uses this hook to log a message whenever its props or state change, indicating which props changed and what their previous and current values were. This can be helpful for debugging and identifying unnecessary re-renders.
Last updated