Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created February 13, 2020 17:45
Show Gist options
  • Select an option

  • Save r3dm1ke/695eadc9329b31b58595296d61517ca2 to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/695eadc9329b31b58595296d61517ca2 to your computer and use it in GitHub Desktop.
Simple logging middleware for Redux
const loggingMiddleware = (store) => (next) => (action) => {
console.log(action.type);
next(action);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment