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

21 lines
503 B
JavaScript
Raw Normal View History

2017-05-12 00:23:56 +00:00
// @flow
import * as React from "react";
import CenteredContent from "components/CenteredContent";
import PageTitle from "components/PageTitle";
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;