UNPKG

292 BJavaScriptView Raw
1import React from 'react'
2import SEO from 'src/components/seo'
3
4const NotFoundPage = () => (
5 <React.Fragment>
6 <SEO title='404: Not found' />
7 <h1>NOT FOUND</h1>
8 <p>You just hit a route that doesn&#39;t exist... the sadness.</p>
9 </React.Fragment>
10)
11
12export default NotFoundPage