compose(...functions) Composes functions from right to left. This is a functional programming utility, and is
subscribe(listener) Adds a change listener
getState() Returns the current state tree of
replaceReducer(nextReducer) Replaces the
bindActionCreators(actionCreators, dispatch) Turns an object whose values are
createStore(reducer, [preloadedState], [enhancer]) Creates a Redux store that holds
Store A store holds the whole state tree of your application.
dispatch(action) Dispatches an action. This
API Reference The Redux API surface is tiny. Redux defines a set of contracts for you to implement (such as
combineReducers(reducers) As your app grows more complex, you'll want to split your
Page 1 of 2