Form generation for view/constant/pure functions

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

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>);
}
}