import React from "react"; import { RouteComponentProps, withRouter } from "react-router"; import styled from "styled-components"; import Button from "components/editorComponents/Button"; import PageUnavailableImage from "assets/images/404-image.png"; import { APPLICATIONS_URL } from "constants/routes"; const Wrapper = styled.div` text-align: center; margin-top: 5%; .bold-text { font-weight: ${props => props.theme.fontWeights[3]}; font-size: 24px; } .page-unavailable-img { width: 35%; } .button-position { margin: auto; } `; class PageNotFound extends React.PureComponent { public render() { return ( <> Page Unavailable

Page not found

Either this page doesn't exist, or you don't have access to
this page.

); } } export default withRouter(PageNotFound);