mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
12 lines
258 B
JavaScript
Executable File
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't exist... the sadness.</p>
|
|
</Layout>
|
|
)
|
|
|
|
export default NotFoundPage
|