summaryrefslogtreecommitdiff
path: root/deps/npm/docs/src/pages/404.js
blob: aa06a9d10cb9db2446d930f2b3ad1d321a056f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react'
import SEO from 'src/components/seo'

const NotFoundPage = () => (
  <React.Fragment>
    <SEO title='404: Not found' />
    <h1>NOT FOUND</h1>
    <p>You just hit a route that doesn&#39;t exist... the sadness.</p>
  </React.Fragment>
)

export default NotFoundPage