Important Note on Using store.subscribe()
Understand key caveats of using store.subscribe in Redux for state updates. Learn why react-redux bindings are typically used in larger applications and how to approach Redux basics with minimal dependencies.
We'll cover the following...
We'll cover the following...
There are a few caveats to using store.subscribe() as we’ve done here. It’s a low-level Redux API.
In production, and largely for performance reasons, you’ll likely use bindings such as react-redux (this ...