@mobx-devtools/tools
v0.0.4
Published
Allows debugging mobx roots, ## Installation
Downloads
12,440
Readme
Mobx-devtools V0.0.3:
Allows debugging mobx roots,
Installation
Using npm:
npm i --save @mobx-devtools/tools
Use case
import {injectStores} from '@mobx-devtools/tools';
const storeA = new StoreA();
const storeB = new StoreB();
injectStores({
storeA,
storeB
});
const App = () => {
// other code
}```