Skip to content

Commit 2c69ff2

Browse files
committed
replace redux-action-utils (deprecated) with redux-act
'insin/redux-action-utils' has been deprecated, so should be removed from the document.
1 parent 5e996af commit 2c69ff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/ReducingBoilerplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export const addTodo = makeActionCreator(ADD_TODO, 'todo')
150150
export const editTodo = makeActionCreator(EDIT_TODO, 'id', 'todo')
151151
export const removeTodo = makeActionCreator(REMOVE_TODO, 'id')
152152
```
153-
There are also utility libraries to aid in generating action creators, such as [redux-action-utils](https://github.com/insin/redux-action-utils) and [redux-actions](https://github.com/acdlite/redux-actions). These can help with reducing your boilerplate code and adhering to standards such as [Flux Standard Action (FSA)](https://github.com/acdlite/flux-standard-action).
153+
There are also utility libraries to aid in generating action creators, such as [redux-act](https://github.com/pauldijou/redux-act) and [redux-actions](https://github.com/acdlite/redux-actions). These can help with reducing your boilerplate code and adhering to standards such as [Flux Standard Action (FSA)](https://github.com/acdlite/flux-standard-action).
154154

155155
## Async Action Creators
156156

0 commit comments

Comments
 (0)