UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

29 lines (22 loc) 530 B
import { extendObservable, observable, makeObservable } from 'mobx'; export default class Fiber { constructor({ checkout = {} }: any) { makeObservable(this, { confirmedAvailability: observable, property: observable, properties: observable, relocationDate: observable, }); extendObservable(this, checkout); } confirmedAvailability = { street: '', houseNumber: '', zip: '', line: '', city: '', }; property = null; properties = []; relocationDate = null; }