Why you should not use MobX?

MobX does not provide any restrictions on how new states can be derived from old ones . It’s more of a Data flow library as its creator likes to call it. MobX helps us set up Reactivity outside React components. This way view components can be kept free of logic.

Read more

What is disposeOnUnmount?

disposeOnUnmount(componentInstance, propertyKey | function | function[]) Function (and decorator) that makes sure a function (usually a disposer such as the ones returned by reaction , autorun , etc.) is automatically executed as part of the componentWillUnmount lifecycle event.

Read more

What is observer in MobX?

The observer HoC automatically subscribes React components to any observables that are used during rendering . As a result, components will automatically re-render when relevant observables change. It also makes sure that components don’t re-render when there are no relevant changes.

Read more

What is inject MobX?

The store injection pattern was popularized by the mobx-react library. It refers to a now obsolete way of accessing the MobX stores across the component tree . It was introduced because the React legacy context was rather awkward to use.

Read more