Created
February 20, 2019 18:17
-
-
Save merlox/8c04c1e568cfa26939a84a4fbe2100ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import ReactDOM from 'react-dom' | |
import './index.css' | |
class Main extends React.Component { | |
constructor() { | |
super() | |
} | |
render() { | |
return ( | |
<div> | |
<h1>ERC721 Art Marketplace</h1> | |
<p>In this marketplace you can deploy unique ERC721 art pieces to the blockchain with 0xcert.</p> | |
<div className="assets-container"></div> | |
<button className="margin-right">Deploy Art Piece</button> | |
<button>Get Art Pieces</button> | |
</div> | |
) | |
} | |
} | |
ReactDOM.render(<Main />, document.querySelector('#root')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment