Skip to content

Instantly share code, notes, and snippets.

@fuglu
Created July 6, 2016 19:21
Show Gist options
  • Save fuglu/8f3ad35e362f859a415e34e36ab291b1 to your computer and use it in GitHub Desktop.
Save fuglu/8f3ad35e362f859a415e34e36ab291b1 to your computer and use it in GitHub Desktop.
const middleware = store => next => action => {
console.log('store:', store);
console.log('next:', next);
console.log('action:', action);
return next(action);
};
export default middleware;
@fuglu
Copy link
Author

fuglu commented Jul 6, 2016

@vileda 🍻 🍻 🍻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment