Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save archangel-irk/af4b6006e69b8e7e978760f5b0847315 to your computer and use it in GitHub Desktop.
Save archangel-irk/af4b6006e69b8e7e978760f5b0847315 to your computer and use it in GitHub Desktop.
Getting Store In React Developer Tools Tip
// 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