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

11 lines
219 B
TypeScript

import React, { Component } from 'react'
import styles from './Home.module.scss'
class Home extends Component {
public render() {
return <div className={styles.home}>Home</div>
}
}
export default Home