microsoft / redux-dynamic-modules

Modularize Redux by dynamically loading reducers and middlewares.
https://redux-dynamic-modules.js.org
MIT License
1.07k stars 116 forks source link

how run multi saga in multi modules #149

Open khanhnam99 opened 4 years ago

khanhnam99 commented 4 years ago

I use widgets

file module.js

image

file index.js

image

file foo.js

image

file bar.js

image

run error

image

how fix run multi

Akiyamka commented 4 years ago

In module.js you import rootSaga by name, but it exported as default. Delete default word in index.js

khanhnam99 commented 4 years ago

thanks, worked for me