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 b8fe0dd258
commit 9e42028fdf

View File

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