This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example usage for React class component. | |
// Can also it for state or non-react JS. | |
componentDidUpdate(prevProps) { | |
logUpdatedDiff(prevProps, this.props) | |
} | |
/** | |
* @param {object} prev: previous to compare | |
* @param {object} current: current to compare | |
* @return {void} |