UNPKG

label-studio

Version:

Data Labeling Tool that is backend agnostic and can be embedded into your applications

20 lines (17 loc) 308 B
import { types, getParent } from "mobx-state-tree"; /** * Project Store */ const ProjectStore = types .model("Project", { /** * Project ID */ id: types.identifierNumber, }) .views(self => ({ get app() { return getParent(self); }, })); export default ProjectStore;