v2.0.0
- Added thunk support! Thanks to @jsdmc and @adailey14 for their contributions.
Breaking Changes
v1.0.x
mapStateToProps()
took the reducer's state as its only parameter.
v2.x
mapStateToProps()
takes the reducer's key, the entire state, and an optional ownProps
parameter, much like react-redux
's connect()
function.
For more details, see PR #103 and the README.
This is how the react-redux-universal-hot-example
was migrated.