mirror of
https://github.com/status-im/snt-voting.git
synced 2025-02-24 16:18:40 +00:00
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;
|