Web: Client: init confirm store

This commit is contained in:
Viktor Fomin 2021-05-14 15:57:56 +03:00
parent 4c618c0826
commit 57589a4e9e

View File

@ -2,16 +2,19 @@ import authStore from "@appserver/common/store/AuthStore";
import PaymentStore from "./PaymentStore";
import WizardStore from "./WizardStore";
import SettingsSetupStore from "./SettingsSetupStore";
import ConfirmStore from "./ConfirmStore";
const paymentStore = new PaymentStore();
const wizardStore = new WizardStore();
const setupStore = new SettingsSetupStore();
const confirmStore = new ConfirmStore();
const store = {
auth: authStore,
payments: paymentStore,
wizard: wizardStore,
setup: setupStore,
confirm: confirmStore,
};
export default store;