+ MobX is a state-management library that makes it simple to connect the
+ reactive data of your application with the UI (or any observer). This
+ wiring is completely automatic and feels very natural. As the
+ application-developer, you focus purely on what reactive-data needs to
+ be consumed without worrying about keeping the two in sync.
+
+
+
+
+
+ Observables store the reactive state of your application.
+ It will notify the associated reactions whenever the state
+ changes. Observables can be simple primitives like numbers,
+ strings, booleans to List, Map, Stream and Future.
+
+ }
+ />
+
+ Actions are responsible for mutating the reactive state.
+ When the mutations happen, the notifications are fired
+ immediately, causing all the reactions to execute. An action
+ acts as an intentionally-named operation that changes the state
+ of the application.
+
+ }
+ />
+