...
/Important Note on Using store.subscribe()
Important Note on Using store.subscribe()
Store.subscribe() can be used for small-scale projects such as ours. We'll use it as a building block for reaching more complex techniques.
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 ...