wonderful world
wonderful world

Reputation: 11599

How React Redux Reselect manages previous arguments?

How does React Redux Reselect manages the previous arguments and where and that will be compared with the current arguments?

Upvotes: 0

Views: 127

Answers (1)

darthtrevino
darthtrevino

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

Related Questions