mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
import React, { Component } from 'react'
|
|
import Route from '../components/templates/Route'
|
|
|
|
class NotFound extends Component {
|
|
public render() {
|
|
return <Route title="404 - Not Found">Not Found</Route>
|
|
}
|
|
}
|
|
|
|
export default NotFound
|