mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
|
// mobx
|
||
|
import { action, observable, makeObservable } from "mobx";
|
||
|
|
||
|
export interface IInstanceStore {}
|
||
|
|
||
|
export class InstanceStore implements IInstanceStore {
|
||
|
constructor() {
|
||
|
makeObservable(this, {
|
||
|
// observable
|
||
|
// action
|
||
|
// computed
|
||
|
});
|
||
|
}
|
||
|
}
|