sidebar_label | title | hide_title |
---|---|---|
MobX + React DevTools |
MobX + React DevTools |
true |
egghead.io lesson 2: devtools
<iframe style="border: none;" width=760 height=427 src="https://egghead.io/lessons/react-analyze-react-components-with-mobx-react-devtools/embed" ></iframe>
Hosted on egghead.io
MobX ships with DevTools that can be used to track the rendering behavior and data dependencies of your app.
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.