This repository was archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Redux DevTools
Darko Kukovec edited this page Jul 1, 2017
·
1 revision
Starting with mobx-collection-store version 1.4.1, mobx-jsonapi-store can work together with Redux DevTools Extension.
Everything that's required to make them work together is mobx-store-devtools:
npm install --save-dev mobx-store-devtoolsimport {init} from 'mobx-store-devtools';
import {Store} from 'mobx-jsonapi-store';
const store = new Store();
init(store); // This can be any instance of the collection or jsonapi store