Web: Client: Simplified imports

This commit is contained in:
Alexey Safronov 2021-02-24 20:24:38 +03:00
parent 2007d9b3da
commit 72675eb198
2 changed files with 2 additions and 4 deletions

View File

@ -2,10 +2,9 @@
import Text from "@appserver/components/src/components/text";
import Link from "@appserver/components/src/components/link";
import PageLayout from "@appserver/common/src/components/PageLayout";
import { useTranslation } from "react-i18next";
import { useTranslation, Trans } from "react-i18next";
import version from "../../../../package.json";
import styled from "styled-components";
import { Trans } from "react-i18next";
import { isMobile } from "react-device-detect";
import { setDocumentTitle } from "../../../helpers/utils";

View File

@ -1,8 +1,7 @@
import { store as commonStore } from "@appserver/common/src";
import authStore from "@appserver/common/src/store/AuthStore";
import PaymentStore from "./PaymentStore";
import WizardStore from "./WizardStore";
import SettingsSetupStore from "./SettingsSetupStore";
const { authStore } = commonStore;
const paymentStore = new PaymentStore();
const wizardStore = new WizardStore();