Web: LoginMobile: added Header to App

This commit is contained in:
Artem Tarasov 2021-02-16 13:31:24 +03:00
parent 0298249ab4
commit 0b521f6b48
2 changed files with 11 additions and 4 deletions

View File

@ -1,9 +1,16 @@
import React from "react";
import { Provider } from "react-redux";
import Login from "./Login";
import Header from "./sub-components/header-login-mobile";
import "./custom.scss";
const App = () => {
return <Login />;
return (
<>
<Header /> <Login />
</>
);
};
export default App;

View File

@ -5,8 +5,8 @@ import { withTranslation } from "react-i18next";
import PropTypes from "prop-types";
import { withRouter } from "react-router";
import { PageLayout, store, api, utils } from "ASCWebCommon";
import { checkPwd } from "ASCWebCommon/desktop";
import { PageLayout, store, api, utils } from "ASC.Web.Common";
import { checkPwd } from "ASC.Web.Common/desktop";
import {
Box,
Button,
@ -19,7 +19,7 @@ import {
PasswordInput,
FieldContainer,
tre,
} from "ASCWebComponents";
} from "ASC.Web.Components";
import i18n from "./i18n";
import ForgotPasswordModalDialog from "./sub-components/forgot-password-modal-dialog";