mirror of
https://github.com/status-im/snt-voting.git
synced 2025-02-24 08:08:19 +00:00
Merge branch '000-snt-voting-dapp' of https://github.com/status-im/contracts into 000-snt-voting-dapp
This commit is contained in:
commit
5f8377f23f
15
app/components/proposalManager.js
Normal file
15
app/components/proposalManager.js
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
@ -6,6 +6,7 @@ import EmbarkJS from 'Embark/EmbarkJS';
|
||||
import TopNavbar from './components/topnavbar';
|
||||
import TestTokenUI from './components/testtoken';
|
||||
import ERC20TokenUI from './components/erc20token';
|
||||
import ProposalManager from './components/proposalManager'
|
||||
|
||||
import VotingDapp from './components/voting-dapp/voting-dapp';
|
||||
|
||||
@ -48,6 +49,9 @@ class App extends React.Component {
|
||||
<Tab eventKey={2} title="ERC20Token">
|
||||
<ERC20TokenUI />
|
||||
</Tab>
|
||||
<Tab eventKey={3} title="ProposalManager">
|
||||
<ProposalManager />
|
||||
</Tab>
|
||||
</Tabs>
|
||||
</div>);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user