+ еще в configurator/validation: добавить проверку на наличие выбранного тарифа в поле selectTarif
10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
import type { ObservableSet } from 'mobx';
|
|
import { observable } from 'mobx';
|
|
|
|
export type Process = 'Calculate' | 'CreateKP' | 'ELT' | 'LoadKP' | 'Tarif' | 'Unlimited';
|
|
export type ProcessStore = ObservableSet<Process>;
|
|
|
|
export default function createProcessStore() {
|
|
return observable.set<Process>();
|
|
}
|