Adding the Redux Dev Tools

First and foremost, install the Redux Developer Tools in your browser if you haven't already.

We're not totally there yet, we still need to hook our application up to the tools.

The extension adds some properties onto the global window object. One of these is an enhancer that we can use.

window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__();

We can pass this to our store when we create it in store.js.

Now, we have some insight into the current state of the store and the actions that are firing through the application.