How to get the mobx observer value in react component ?
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 discussion