0.0.4 • Published 4 years ago

@mobx-devtools/tools v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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
}```