rxsc-redux-compat
v0.1.0
Published
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.
Downloads
17
Readme
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-compatWith yarn
$ yarn add rxsc-redux-compatUsage
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());