import React, { Component } from 'react'; import styled from 'styled-components'; import BodyWrapper from '../components/BodyWrapper'; const Wrapper = styled.h2` font-size: 24px; font-weight: 300; position: absolute; text-align: center; top: 40vh; padding-left: 10px; padding-right: 10px; `; // eslint-disable-next-line react/prefer-stateless-function class OfflinePage extends Component { render() { return ( Please check your internet connection and try again.
You are offline right now.
); } } export default OfflinePage;