Created
February 13, 2020 17:45
-
-
Save r3dm1ke/695eadc9329b31b58595296d61517ca2 to your computer and use it in GitHub Desktop.
Simple logging middleware for Redux
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 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