What is MobX state management?

MobX is a simple, scalable, boilerplate-free state management solution . It allows you to manage application state outside of any UI framework, making the code decoupled, portable and, above all, easy to test. It implements observable values, which are essentially using the publish/subscribe pattern.4 May 2021

Read more

What is computed in MobX?

Computed values are automatically derived from your state if any value that affects them changes . Computed values can be optimized away in many cases by MobX as they are assumed to be pure. For example, a computed property won’t re-run if none of the data used in the previous computation changed.

Read more