We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87a539f commit ecbf505Copy full SHA for ecbf505
README.md
@@ -45,6 +45,10 @@ If you do not know what [Redux DevTools](https://github.com/gaearon/redux-devtoo
45
typeof window === 'object' && typeof window.devToolsExtension !== 'undefined' ? window.devToolsExtension() : f => f
46
)(createStore);
47
```
48
+ You can use it together with vanilla Redux DevTools as a fallback, but not both simultaneously:
49
+ ```js
50
+ window.devToolsExtension ? window.devToolsExtension() : DevTools.instrument()
51
+ ```
52
53
- **With Redux@^3.1 it's [even easier](https://github.com/zalmoxisus/redux-devtools-extension/commit/9c631ef66f53e51f34b55f4642bd9ff2cbc7a992)**<br/>
54
```javascript
0 commit comments