how to get the observer value in the react component> I have a store with simple object observer import { action, computed, observable } from "mobx"; class TaskStore { @observable public task = {}; @observable public boards = []; @actio...
Join discussionWhen im trying to use React Native Single Store. After injecting into Home Component the store is not visible in props of Home component. By displaying the props of Home component im not able to access the store that was passed to Home component from...
Join discussionI am a React developer we use the Redux as a store and Redux saga from async API operations and use Redux persist for local storage. Now I want to switch to Mobx does anybody can suggest me What is the alternative of the redux saga when I will use th...
Join discussionI have a FilterHeader component that gets some stores injected: interface FilterHeaderProps { applicationStore: ApplicationStoreType; conversationsListStore: ConversationsListStoreType } @inject('applicationStore', 'conversationsListStore') @obs...
Cchristopher commentedI know it’s not fully supported (zalmoxisus/mobx-remotedev#32) but there are forks that work for mobx 4. However I am not getting any actions to be registered in the logger. I tried https://github.com/jhen0409/react-native-debugger/tree/master/exampl...
Join discussion