Redux Concepts
Redux Store
central global container to manage App state for redux
Root Reducer
redux
fn to compute new state from old state & Action data
Redux Reducer
pass initState & action object
Dispatch
redux
fn to send Action object to Reducer
Subscriber
Redux Middleware
Middleware to enhance/override store methods