Skip to content
This repository has been archived by the owner on Oct 24, 2021. It is now read-only.

Update redux-store.html to support REDUX DEV TOOLS Chrome extension #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Commits on Sep 10, 2017

  1. Update redux-store.html

    I suggest to add support for REDUX dev tool extension used in Chrome, is very handy to have a panel which shows the timeline of changes in your state, to do that you need to use " window.devToolsExtension() or window.__REDUX_DEVTOOLS_EXTENSION__" and Redux.compose().
    
    const store = Redux.createStore(
    reducer,
    Redux.compose(
    Redux.applyMiddleware(ReduxThunk.default),
    window.devToolsExtension && window.devToolsExtension()
    ));
    mdibenedetto authored Sep 10, 2017
    Configuration menu
    Copy the full SHA
    464afdb View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2017

  1. Update redux-store.html

    New update to deal in case REDUX DEV TOOL are not installed
    mdibenedetto authored Sep 11, 2017
    Configuration menu
    Copy the full SHA
    3ee4430 View commit details
    Browse the repository at this point in the history