React开发者工具调试(facebook)
redux 开发工具
store中进行配置
const store = createStore(reducer,+ window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__());
react-redux开发者工具的使用
(1).npm install redux-devtools-extension(2).store中进行配置import {composeWithDevTools} from 'redux-devtools-extension'const store = createStore(allReducer,composeWithDevTools(applyMiddleware(thunk)))
