2.0.0 • Published 6 years ago

redux-toolbox v2.0.0

Weekly downloads
87
License
MIT
Repository
github
Last release
6 years ago

redux-toolbox

Just a small collection of redux utilities I've found useful between different projects.

Usage

$ npm install redux-toolbox

Then import the desired utility:

import {createReducer} from 'redux-toolbox';

export default createReducer(0, {
  increment: (state) => state + 1
  decrement: (state) => state - 1
})

API

  • composeReducers(...reducers)
  • createActionTypes(action, name, [options])
  • createReducer(initialState, actionHandlers)

See source code for more type information.

LICENSE

MIT