-
Today I learned more about React memoization. I was stuck optimizing a component that was re-rendering too often and after digging a bit, some things stuck out to me. Memoization, for the uninitiated, is the process of storing the results of expensive function calls and returning the cached result when the same inputs occur again.…