mirror of https://github.com/embarklabs/embark.git
Fixing template
This commit is contained in:
parent
04ad83aee3
commit
2c18caf481
|
@ -6,32 +6,6 @@ import ReactDOM from 'react-dom';
|
||||||
import { FormGroup, ControlLabel, FormControl, Checkbox, Button, Alert, InputGroup } from 'react-bootstrap';
|
import { FormGroup, ControlLabel, FormControl, Checkbox, Button, Alert, InputGroup } from 'react-bootstrap';
|
||||||
|
|
||||||
|
|
||||||
class {{contractName}}UI extends React.Component {
|
|
||||||
constructor (props) {
|
|
||||||
super(props);
|
|
||||||
this.state = {
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
render(){
|
|
||||||
return (<div>
|
|
||||||
{{#each functions}}
|
|
||||||
<{{capitalize name}}Form{{@index}} />
|
|
||||||
{{/each}}
|
|
||||||
</div>);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ReactDOM.render(<div>
|
|
||||||
<h1>{{title}}</h1>
|
|
||||||
<{{contractName}}UI />
|
|
||||||
</div>,
|
|
||||||
document.getElementById('app')
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{#each functions}}
|
{{#each functions}}
|
||||||
class {{capitalize name}}Form{{@index}} extends React.Component {
|
class {{capitalize name}}Form{{@index}} extends React.Component {
|
||||||
constructor(props){
|
constructor(props){
|
||||||
|
@ -186,3 +160,29 @@ class {{capitalize name}}Form{{@index}} extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
|
|
||||||
|
class {{contractName}}UI extends React.Component {
|
||||||
|
constructor (props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
render(){
|
||||||
|
return (<div>
|
||||||
|
{{#each functions}}
|
||||||
|
<{{capitalize name}}Form{{@index}} />
|
||||||
|
{{/each}}
|
||||||
|
</div>);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ReactDOM.render(<div>
|
||||||
|
<h1>{{title}}</h1>
|
||||||
|
<{{contractName}}UI />
|
||||||
|
</div>,
|
||||||
|
document.getElementById('app')
|
||||||
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue