docs/src/pages/404.js

12 lines
258 B
JavaScript
Executable File

import React from 'react'
import Layout from '../components/Layout'
const NotFoundPage = () => (
<Layout>
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</Layout>
)
export default NotFoundPage