Moved files

This commit is contained in:
Richard Ramos 2018-05-21 16:16:29 -04:00
parent 3e44fa9b28
commit 55f1e283a1
3 changed files with 0 additions and 55 deletions

View File

@ -1,18 +0,0 @@
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>;
}
}
module.exports = ProposalForm;

View File

@ -1,12 +0,0 @@
import React from 'react';
import Proposal from './proposal';
const ProposalList = props =>
<React.Fragment>
{props.proposals.map(u => (
<Proposal data={u} />
))}
</React.Fragment>
module.exports = ProposalList;

View File

@ -1,25 +0,0 @@
import web3 from "Embark/web3"
import EmbarkJS from 'Embark/EmbarkJS';
import React from 'react';
import ProposalForm from './proposal-form';
import Proposal from './proposal';
import ProposalList from './proposal-list';
class ProposalForm extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render(){
return <div>
<ProposalList />
<ProposalForm />
</div>;
}
}
module.exports = ProposalForm;