Redux State Management
Redux State Management
Fluxit
In Redux, state variables and objects are never mutated. Instead, new ones are
produced.
True
The function random() produces a new random number between 0 and 1 every time you
run it. Is this a pure function?
False
Actions in Redux
Send data to Store
What is the helper function that Redux provides for making root reducer?
CombineReducer()
How can initial state be passed to store the, using the createStore function?
Pass it as second aurgument
Which components take care of connecting to Redux store for data fetching and state
updates?
Container