feat: Add edit/create/list sight page
This commit is contained in:
@@ -2,8 +2,15 @@ import { authInstance } from "@shared";
|
||||
import { API_URL } from "@shared";
|
||||
import { makeAutoObservable } from "mobx";
|
||||
|
||||
type Snapshot = {
|
||||
ID: string;
|
||||
Name: string;
|
||||
ParentID: string;
|
||||
CreationTime: string;
|
||||
};
|
||||
|
||||
class SnapshotStore {
|
||||
snapshots: any[] = [];
|
||||
snapshots: Snapshot[] = [];
|
||||
|
||||
constructor() {
|
||||
makeAutoObservable(this);
|
||||
|
||||
Reference in New Issue
Block a user