doc.silverstripe.org/src/pages/404.tsx

11 lines
313 B
TypeScript
Raw Permalink Normal View History

2019-11-08 03:40:20 +01:00
import React, { StatelessComponent } from "react";
import SEO from "../components/SEO";
const NotFoundPage: StatelessComponent<{}> = () => (
<>
<SEO title="404: Not found" />
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</>
);
export default NotFoundPage;