1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/client/src/routes/NotFound.tsx

17 lines
427 B
TypeScript

import React, { Component } from 'react'
import Route from '../components/templates/Route'
import Content from '../components/atoms/Content'
import withTracker from '../hoc/withTracker'
class NotFound extends Component {
public render() {
return (
<Route title="404 - Not Found">
<Content>Not Found</Content>
</Route>
)
}
}
export default withTracker(NotFound)