Form generation for view/constant/pure functions

This commit is contained in:
Richard Ramos 2018-05-10 17:02:47 -04:00 committed by Iuri Matias
parent 0c84e9974c
commit f86cf22c39

View File

@ -187,7 +187,11 @@ class {{contractName}}UI extends React.Component {
} }
render(){ render(){
return (<h2>Test</h2>); return (<div>
{{#each functions}}
<{{capitalize name}}_{{@index}}_Form />
{{/each}}
</div>);
} }
} }