* chore: Upgrade Prettier 1.8 -> 2.0 * chore: Upgrade Babel 6 -> 7 * chore: Upgrade eslint plugins * chore: Add eslint import/order rules * chore: Update flow-typed deps
21 lines
503 B
JavaScript
21 lines
503 B
JavaScript
// @flow
|
||
import * as React from "react";
|
||
import CenteredContent from "components/CenteredContent";
|
||
import Empty from "components/Empty";
|
||
import PageTitle from "components/PageTitle";
|
||
|
||
const Error404 = () => {
|
||
return (
|
||
<CenteredContent>
|
||
<PageTitle title="Not Found" />
|
||
<h1>Not found</h1>
|
||
<Empty>
|
||
We were unable to find the page you’re looking for. Go to the
|
||
<a href="/">homepage</a>?
|
||
</Empty>
|
||
</CenteredContent>
|
||
);
|
||
};
|
||
|
||
export default Error404;
|