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