Some users prefer to keep every single piece of data in Redux, to maintain a fully serializable and controlled version of their application at all times . Others prefer to keep non-critical or UI state, such as “is this dropdown currently open”, inside a component’s internal state. Using local component state is fine.
Read moreWhat is Redux state?
State (also called the state tree) is a broad term, but in the Redux API it usually refers to the single state value that is managed by the store and returned by getState() . It represents the entire state of a Redux application, which is often a deeply nested object.
Read moreWhat is the store in Redux?
A store is an immutable object tree in Redux. A store is a state container which holds the application’s state. Redux can have only a single store in your application. Whenever a store is created in Redux, you need to specify the reducer.
Read more