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

11 lines
313 B
TypeScript

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;