Licence
MIT
Version
0.1.0
Deps
4
Vulns
0
Weekly
0
rxsc-redux-compat
This RxSC addon creates a Redux store that mirrors the RxSC container, allowing you to use many of the available dev tools made for redux, perhaps most notably the Redux devtools.
Installation
With npm
$ npm install --save rxsc-redux-compat
With yarn
$ yarn add rxsc-redux-compat
Usage
Obviously you don't wanna use this in production.
import { createMirroredReduxStore } from 'rxsc-redux-compat';
import devToolsEnhancer from 'remote-redux-devtools';
import container from './container';
createMirroredReduxStore(container, devToolsEnhancer());