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/Error404.js

22 lines
514 B
JavaScript
Raw Normal View History

2017-05-12 00:23:56 +00:00
// @flow
2018-05-05 23:16:08 +00:00
import * as React from 'react';
2016-08-03 11:55:56 +00:00
import CenteredContent from 'components/CenteredContent';
import PageTitle from 'components/PageTitle';
2018-06-08 04:35:40 +00:00
import Empty from 'components/Empty';
2016-08-03 11:55:56 +00:00
const Error404 = () => {
return (
<CenteredContent>
<PageTitle title="Not Found" />
<h1>Not found</h1>
<Empty>
We were unable to find the page youre looking for. Go to the&nbsp;<a href="/">
homepage
</a>?
</Empty>
</CenteredContent>
);
};
2016-08-03 11:55:56 +00:00
export default Error404;