marcandrewb
9/19/2016 - 12:30 AM

middleware-redux.md

A middleware is simply a function with the signature

storeInstance => functionToCallWithAnActionThatWillSendItToTheNextMiddleware => actionThatDispatchWasCalledWith => valueToUseAsTheReturnValueOfTheDispatchCall

Typically written as store => next => action => result