Reactjs – Using a method from the mobx store in React useMemo
I have a MobX Store that contains user role information and a method that validates the role: class Store { constructor() { makeAutoObservable(this) } role: string = "" setRole(name: string) { this.role = name } checkRole(name: string) { return this.role…