mirror of
https://github.com/status-im/visual-identity.git
synced 2025-02-13 04:57:03 +00:00
Moved files
This commit is contained in:
parent
3e44fa9b28
commit
55f1e283a1
@ -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;
|
@ -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;
|
||||
|
@ -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;
|
Loading…
x
Reference in New Issue
Block a user