import React from "react"; import styled from "styled-components"; import AppTimeoutImage from "assets/images/timeout-image.png"; const Wrapper = styled.div` display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: calc(100vh - ${(props) => props.theme.headerHeight}); .bold-text { font-weight: ${(props) => props.theme.fontWeights[3]}; font-size: 24px; } .page-unavailable-img { width: 35%; } .button-position { margin: auto; } `; const RetryButton = styled.button` background-color: #f3672a; color: white; height: 40px; width: 300px; border: none; cursor: pointer; font-weight: 600; font-size: 17px; `; const ServerTimeout = () => { return ( Page Unavailable

Appsmith server is taking too long to respond

Please retry after some time

window.location.reload()}> {"Retry"}
); }; export default ServerTimeout;