optimized loading page

This commit is contained in:
Martina 2021-01-13 12:43:29 -08:00
parent fc0d93061b
commit e1ae30d115

View File

@ -673,6 +673,20 @@ export default class ApplicationPage extends React.Component {
mobile={this.props.mobile}
resourceURI={this.props.resources.search}
/>
{!this.state.loaded ? (
<div
style={{
position: "absolute",
width: "100vw",
height: "100vh",
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
<Logo style={{ width: "20vw", maxWidth: "200px" }} />
</div>
) : null}
</WebsitePrototypeWrapper>
</React.Fragment>
);