0.1.0 • Published 7 years ago

rxsc-redux-compat v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

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