mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import React, { Component } from 'react'
|
|
|
|
class NotFound extends Component {
|
|
public render() {
|
|
return <div>Not found</div>
|
|
}
|
|
}
|
|
|
|
export default NotFound
|