This repository was archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Redux DevTools
Darko Kukovec edited this page Jul 1, 2017
·
1 revision
Starting with version 1.4.1, mobx-collection-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-devtools
import {init} from 'mobx-store-devtools';
import {Collection} from 'mobx-collection-store';
const collection = new Collection();
init(collection); // This can be any instance of the collection or jsonapi store