Skip to content

Instantly share code, notes, and snippets.

@mkrishnan-codes
Created June 7, 2022 01:19
Show Gist options
  • Save mkrishnan-codes/2d1bbc8e2434b4654d7dc3b80d7922e0 to your computer and use it in GitHub Desktop.
Save mkrishnan-codes/2d1bbc8e2434b4654d7dc3b80d7922e0 to your computer and use it in GitHub Desktop.
redux custom middleware sample code
const logMiddleWare = store => next => action => {
if (action.type.includes('SET_SOME_DATA')) {
console.log(`%c ${action.type}`, 'background: #222; color: #00ffcc');
}
next(action);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment