getState() Returns the current state tree of
compose(...functions) Composes functions from right to left. This is a functional programming utility, and is
subscribe(listener) Adds a change listener
replaceReducer(nextReducer) Replaces the
API Reference The Redux API surface is tiny. Redux defines a set of contracts for you to implement (such as
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
bindActionCreators(actionCreators, dispatch) Turns an object whose values are
combineReducers(reducers) As your app grows more complex, you'll want to split your
Page 1 of 2