Skip to content

Instantly share code, notes, and snippets.

@JeffreyMFarley
Created January 29, 2018 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeffreyMFarley/cd3c4d8e07e42f333364c9524e5ec643 to your computer and use it in GitHub Desktop.
Save JeffreyMFarley/cd3c4d8e07e42f333364c9524e5ec643 to your computer and use it in GitHub Desktop.
const logger = store => next => action => {
console.log( 'dispatching', action );
const result = next( action );
console.log( 'next state', store.getState() );
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment