Merge branch 'feature/workspaces' of github.com:ONLYOFFICE/AppServer into feature/workspaces

This commit is contained in:
Alexey Safronov 2021-03-01 15:29:00 +03:00
commit d280a6dca7

View File

@ -33,11 +33,12 @@ const Settings = React.lazy(() => import("./components/pages/Settings"));
const ComingSoon = React.lazy(() => import("./components/pages/ComingSoon"));
const LoadingBody = styled.div`
width: 100vw;
padding: 20px;
`;
const LoadingShell = () => (
<LoadingBody>
<RectangleLoader height="100%" />
<RectangleLoader height="100%" width="100%" />
</LoadingBody>
);