I am working on a sample Angular 2 application , and I am planning to use @ngrx/store and @ngrx/effects for state management.
This sample application has a root module and multiple feature modules.
Now my questions are.
Can I import StoreModule and EffectsModule in all my feature modules OR Should they be imported only once in root module ?
In order to import a single effects file in a module I had written below line of code in module file
EffectsModule.run(AuthorEffects)What if there are multiple effect files ?