From fbfd0b0eab93b450193ea638861c7a7d152e8407 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Tue, 27 Dec 2016 17:12:01 -0500 Subject: [PATCH] Add action creators article --- redux-side-effects.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redux-side-effects.md b/redux-side-effects.md index 93be787..fdda119 100644 --- a/redux-side-effects.md +++ b/redux-side-effects.md @@ -43,6 +43,10 @@ - **A simplified approach to calling APIs with Redux** http://www.sohamkamani.com/blog/2016/06/05/redux-apis/ A well-written example of creating a "data service" middleware that handles API requests, as well as examples of handling some request status state. + +- **The Evolution of Redux Action Creators** + https://medium.com/@northerneyes/the-evolution-of-redux-action-creators-2973018bf2ae + A comparison of ways to make action creation testable, looking at redux-thunk, a custom thunk-like middleware, and redux-saga #### Sagas