Last active
May 3, 2017 07:41
-
-
Save archangel-irk/af4b6006e69b8e7e978760f5b0847315 to your computer and use it in GitHub Desktop.
Getting Store In React Developer Tools Tip
This file contains 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
// from https://medium.com/statuscode/dissecting-twitters-redux-store-d7280b62c6b1 | |
// $r is a shortcut that references the selected element in RDT | |
$r.store.getState(); | |
// and | |
dispatch = $r.store.dispatch; | |
$r.store.dispatch = function() { | |
console.log(arguments, ‘dispatching’); | |
return dispatch.apply(this, arguments); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment