Skip to content
This repository was archived by the owner on Sep 14, 2023. It is now read-only.

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:

Installation

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

Setup

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