mirror of https://github.com/embarklabs/embark.git
Importing contract and bootstrap css
This commit is contained in:
parent
1dc513cdec
commit
83644b939f
|
@ -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 />
|
||||
|
|
Loading…
Reference in New Issue