# 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());
```



