Mark Erikson
Mark Erikson
Some related `next-redux-wrapper` notes in this issue: - https://github.com/reduxjs/redux-toolkit/discussions/3247#discussioncomment-5866506
**WE'VE FINALLY GOT DOCS FOR SETUP WITH NEXT!!!!** - https://redux.js.org/usage/nextjs
Looks like that was before I started rearranging the docs structure. It's not a specific priority atm, but yeah, if you'd like to put something together, we can try to...
The biggest thing that I've seen is that you can't do `ReactDOM.render()`, because you don't call an equivalent `render()` function directly. Instead, you have to register a root component with...
I _think_ this is improved as of https://github.com/reduxjs/redux/releases/tag/v5.0.0-alpha.5 , and definitely over on the RTK side as of https://github.com/reduxjs/redux-toolkit/releases/tag/v2.0.0-alpha.5 (and you _should_ be using RTK in general).
Vaguely related: for Redux 5.0 we should convert `listeners` into a `Set`. We can safely assume ES6 support by now :)
Heh, this never did get merged. I believe it's obsolete as of v8 because we switched to `useSyncExternalStore`.
v5 allows separate `memoize` and `argsMemoize` customization options
Did finally switch to Jest 29 over in the `v9.0-integration` branch
Longer explanation of why things are split over in https://github.com/reduxjs/redux-toolkit/issues/2637