what is store in redux

Solutions on MaxInterview for what is store in redux by the best coders in the world

showing results for - "what is store in redux"
Ema
05 Jul 2016
1A store is an immutable object tree in Redux. A store is a state container
2which holds the application's state. Redux can have only a single store in
3your application. Whenever a store is created in Redux, you need to specify
4the reducer.
5