randallknutson / redux-injector

Allows dynamically injecting reducers into a redux store at runtime
59 stars 14 forks source link

why Do not use combine reducers ? ☹️ #1

Closed webliving closed 7 years ago

webliving commented 7 years ago

if i need isomorphic , how i do ? 😂

randallknutson commented 7 years ago

The reason we don't use combine reducers is that if the reducers are combined they end up as one function and we couldn't inject any more reducers. I'm not sure how this affects isomorphic. You can add additional reducers as needed and each time the reducers are combined for you automatically.