Redux Store
↔ central global container to manage App state for redux
aka Store
Store contains special methods to mutate state - only to be indirectly access via reducer
References
createStore()
↔ OLD Redux API fn to create new Store Instanceredux
↔ (Design Pattern) to colocate state in global external central store, to control data flow with predictable scalable pattern of Dispatch > Reducer > Storereducer
↔ to pass reducer object - only required arg to config StoreuseSelector()
↔ OLD Redux API Library Hook to select piece of state from Redux Store. rep byuseAppSelector()