|
import web3 from "Embark/web3"
|
|
import EmbarkJS from 'Embark/EmbarkJS';
|
|
import React from 'react';
|
|
|
|
class ProposalForm extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {};
|
|
}
|
|
|
|
render(){
|
|
return <div>TODO: Form</div>;
|
|
}
|
|
|
|
}
|
|
|
|
export default ProposalForm;
|