Reputation: 873
I have multiple lazy loaded angular modules and One root module. Can i have independent ngrx root store in each angular module, each store having its own feature states ?
Upvotes: 1
Views: 1680
Reputation: 7088
Yes of course this can be done, it is even the recommonded way to do. Read here:
You find an example here: https://github.com/DeborahK/Angular-NgRx-GettingStarted/tree/master/APM-Demo5
Upvotes: 1