What to Put in the State
Learn how to decide when to add information to the state and when to keep it outside.
We'll cover the following...
A common issue when working with Redux is deciding what information goes inside our state and what is left outside, either in React’s state
, in Angular’s services
, or other storage method
s of different UI ...