|
|
|
|
|
by brundolf
1915 days ago
|
|
> Svelte has 2 primitives that replace all of this: readable and writable. You can create a writable store and you call `.update` or `.set` like react setState. Want to separate your update logic from your component logic like in redux? Easy, just export functions to update the store instead of calling `.update` in your components. This sounds very similar to the experience of using MobX. I evangelize it as an alternative to Redux every chance I get; it's incredible how practical and pleasant it is to work with. |
|
I also evangelize it whenever I can -- I don't want MobX to be forever doomed to its status as a cult hit!