Adding only domain models never mutates the state. They just add a new state. MobX's strength lies in its ability to “watch” the state and respond when it is mutated. But since you are not mutating the state (addition only), you lose most of this power.
Still useful: if you use MobX to view “size” or “count” or something else, then you will react when these values change as you add state. This is not as difficult as the simultaneous observation of 100 state objects and responding to changes in any of them.
source share