Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 734 Bytes

File metadata and controls

29 lines (18 loc) · 734 Bytes

MobX + React DevTools

egghead.io lesson 2: devtools

MobX ships with DevTools that can be used to track the rendering behavior and data depenencies of your app.

devtools

Usage:

Install:

npm install mobx-react-devtools

To enable devtools, import and render the devtools somewhere in your code-base.

import DevTools from 'mobx-react-devtools'

const App = () => (
  <div>
    ...
    <DevTools />
  </div>
)

For more details check the mobx-react-devtools repository.