Reputation: 11599
How does React Redux Reselect manages the previous arguments and where and that will be compared with the current arguments?
Upvotes: 0
Views: 127
Reputation: 2235
It looks like the previous arguments are encapsulated within their own memoization code. If you need to access a previous state of your application, it may be worthwhile looking into a separate middleware like this: https://github.com/omnidan/redux-undo
Upvotes: 1