This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/scenes/ErrorOffline.js
2018-06-07 21:35:40 -07:00

18 lines
438 B
JavaScript

// @flow
import * as React from 'react';
import CenteredContent from 'components/CenteredContent';
import PageTitle from 'components/PageTitle';
import Empty from 'components/Empty';
const ErrorOffline = () => {
return (
<CenteredContent>
<PageTitle title="Offline" />
<h1>Offline</h1>
<Empty>We were unable to load the document while offline.</Empty>
</CenteredContent>
);
};
export default ErrorOffline;