Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion redux-middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,8 @@

- **"Do I always need to return a value from a Redux middleware?"**
https://stackoverflow.com/questions/45964129/do-i-always-need-to-return-a-value-from-a-redux-middleware/45964310#45964310
My answer to a question about whether middleware should do `return next(action)`. Short version: yes, always, unless you want to alter expected behavior.
My answer to a question about whether middleware should do `return next(action)`. Short version: yes, always, unless you want to alter expected behavior.

- **Digging into Redux middlewares, and exploring Redux-Thunk**
https://medium.com/@shubhnik/digging-into-redux-middlewares-and-exploring-redux-thunk-588133b0bc04
Understanding the middleware part of the redux system.