summaryrefslogtreecommitdiff
path: root/frontend/src/store/middlewares/dummy-middleware.js
blob: 468b15d1804b99e0db453443e011636d16a9b311 (plain)
1
2
3
export const dummyMiddleware = store => next => action => {
  next(action);
};