const middleware = store => next => action => { // 하고 싶은 작업... }
function middleware(store) { return function (next) { return function (action) { // 하고 싶은 작업... }; }; };
to be continue..