Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

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:

Installation

npm install --save-dev mobx-store-devtools

Setup

import {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
Clone this wiki locally