Last active
September 29, 2018 09:23
-
-
Save sthobis/1727b42139a11cf3fb618ee71d3f3fce to your computer and use it in GitHub Desktop.
simple redux logger middleware
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const logger = store => dispatch => action => { | |
console.log("%cprev :", "color: #2ecc71", store.getState()) | |
console.log("%caction :", "color: #3498db", action, "\n\n") | |
return dispatch(action); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment