16 lines
450 B
JavaScript
16 lines
450 B
JavaScript
import EmbarkJS from 'Embark/EmbarkJS';
|
|
import ERC20Token from 'Embark/contracts/ERC20Token';
|
|
import ProposalManagerContract from 'Embark/contracts/ProposalManager'
|
|
import React, { Fragment } from 'react';
|
|
import { Form, FormGroup, FormControl, HelpBlock, Button } from 'react-bootstrap';
|
|
|
|
const ProposalManager = (props) => {
|
|
return (
|
|
<Fragment>
|
|
<h2>Create way to add proposal</h2>
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
export default ProposalManager;
|