mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
22 lines
553 B
TypeScript
22 lines
553 B
TypeScript
import React, { Component } from 'react'
|
|
import Button from '../components/atoms/Button'
|
|
import styles from './About.module.scss'
|
|
|
|
class About extends Component {
|
|
public render() {
|
|
return (
|
|
<div className={styles.about}>
|
|
|
|
<Button>I am a button</Button>
|
|
<Button primary={true}>I am a primary button</Button>
|
|
<Button href="https://hello.com">
|
|
I am a link disguised as a button
|
|
</Button>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default About
|