redu-async
v2.0.0
Published
Adds the possibility to add recuder asynchronously to your redux store
Downloads
379
Readme
redu-async
Adds the possibility to add recuder asynchronously to your #redux store
Installation
npm i --save redu-async
Usage
- You need to install all of your reducers with this otherwise you'll lose
- Keep your redux store so you can access the same reference wherever you need it. (i.e.: A singleton)
import addReducer from 'redu-async ';
addReducer(yourStore, 'TheReducerName', yourReducer);