bots-frontend/store/sample.js
2022-11-11 17:03:31 +07:00

16 lines
250 B
JavaScript

import {makeAutoObservable} from "mobx";
export class SampleStore {
testObs = 0;
ctx;
constructor(ctx) {
makeAutoObservable(this);
this.ctx = ctx;
}
setTestObs(testObs) {
this.testObs = testObs;
}
}