Skip to main content

Command Palette

Search for a command to run...

Redux DevTools for VSCode

Published
1 min readView as Markdown
Redux DevTools for VSCode

Add these 2 lines to store/index.js

import { legacy_createStore as createStore } from 'redux'

// line1
const enhancer = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__


.....
// line2
const store = createStore(counterReducer, enhancer());

More from this blog

Omar's blog

135 posts