|
|
|
|
|
by woah
3509 days ago
|
|
I looked at mobx, but it did not appeal to me at all. Lots of ceremony (observables) to eliminate a small amount of typing. The power of Redux is that it works in an extremely simple way and you can hold the operation of the framework in your head along with your app. Redux is just a big switch statement that ingests plain action objects and outputs a modified state object, along with a connect function to bring parts of the state object into your components. Mobx looks quite baroque in comparison. |
|