使用 redux-devtool 的小提醒 4月 24 2022 React 寫下來才不會忘。 簡述簡單來說就是一個讓你檢查 redux 運作的工具,只是想提醒下面這件事。 請記得一定要在 store.js 裡加上這段才能正常運作: 1234export default createStore( rootReducer, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()); 用 react-redux 把 redux 跟 React 串接起來(Connect 版本) 用 react-redux 把 redux 跟 React 串接起來(Hooks 版本)