[`redux-actions`](https://github.com/acdlite/redux-actions) doesn't provide much value. `createAction` is nice, but adds an unneeded abstraction. This: ``` js const REQUEST_SOMETHING = 'REQUEST_SOMETHING' const requestSomething = createAction(REQUEST_SOMETHING) ``` Can easily be converted to: ``` js const REQUEST_SOMETHING = 'REQUEST_SOMETHING' const requestSomething = params => ({ ...params, type: REQUEST_SOMETHING }) ```
redux-actionsdoesn't provide much value.createActionis nice, but adds an unneeded abstraction.This:
Can easily be converted to: