TAGC / AsyncRedux

AsyncRedux is a C# port of Redux that supports asynchronous action dispatch
MIT License
0 stars 0 forks source link

Use builder pattern for store construction #2

Closed TAGC closed 6 years ago

TAGC commented 6 years ago

StoreSetup should return a store builder rather than construct stores itself, as this allows plugin libraries to extend the builder with additional store configuration options (e.g. middleware).

TAGC commented 6 years ago

Also done.