Importing contract and bootstrap css

This commit is contained in:
Richard Ramos 2018-05-10 12:31:10 -04:00 committed by Pascal Precht
parent 1dc513cdec
commit 83644b939f
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 13 additions and 0 deletions

View File

@ -179,6 +179,19 @@ class {{contractName}}UI extends React.Component {
}
class {{contractName}}UI extends React.Component {
constructor (props) {
super(props);
this.state = {
};
}
render(){
return (<h2>Test</h2>);
}
}
ReactDOM.render(<div>
<h1>{{title}}</h1>
<{{contractName}}UI />