html2canvas/www/src/pages/404.js

11 lines
258 B
JavaScript
Raw Permalink Normal View History

2017-12-09 12:47:25 +03:00
import React from 'react';
2019-04-06 07:28:45 +03:00
import Layout from '../components/layout';
2017-12-09 12:47:25 +03:00
const NotFoundPage = () =>
2019-04-06 07:28:45 +03:00
<Layout>
2017-12-09 12:47:25 +03:00
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
2019-04-06 07:28:45 +03:00
</Layout>;
2017-12-09 12:47:25 +03:00
export default NotFoundPage;