Skip to content

Instantly share code, notes, and snippets.

@merlox
Created February 20, 2019 18:17
Show Gist options
  • Save merlox/8c04c1e568cfa26939a84a4fbe2100ea to your computer and use it in GitHub Desktop.
Save merlox/8c04c1e568cfa26939a84a4fbe2100ea to your computer and use it in GitHub Desktop.
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