Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.28 KB

devtools.md

File metadata and controls

43 lines (31 loc) · 1.28 KB
sidebar_label title hide_title
MobX + React DevTools
MobX + React DevTools
true

MobX + React DevTools

<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CEBD4KQ7&placement=mobxjsorg" id="_carbonads_js"></script>
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.

devtools

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.