MobX + React DevTools
July 21, 2020 · View on GitHub
MobX ships with DevTools that can be used to track the rendering behavior and data dependencies of your app.

Usage:
Install:
npm install mobx-react-devtools
To enable devtools, import and render the devtools somewhere in your codebase.
import DevTools from 'mobx-react-devtools'
const App = () => (
<div>
...
<DevTools />
</div>
)
For more details check the mobx-react-devtools repository.