You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using mobx-devtools to inspect the mobx-state-tree of my React Natiive App in my browser. I have installed mobx-devtools-mst and exported my rootstore with the makeInspectable function. However, when i open mobx devtools in my browser, it keeps hanging on 'looking for mobx....'.
import { types, flow } from 'mobx-state-tree';
import makeInspectable from 'mobx-devtools-mst';
import User from './User';
import Deals from './Deal';
const RootStore = types.model({
user: User,
deals: Deals
});
export default makeInspectable(RootStore.create({ user: User.create(), deals: Deals.create() }));
The text was updated successfully, but these errors were encountered:
Hi,
I am using mobx-devtools to inspect the mobx-state-tree of my React Natiive App in my browser. I have installed mobx-devtools-mst and exported my rootstore with the makeInspectable function. However, when i open mobx devtools in my browser, it keeps hanging on 'looking for mobx....'.
The text was updated successfully, but these errors were encountered: