14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
const Proposal = props => <div>
|
||
|
{ props.data.topic }
|
||
|
|
||
|
BUILD SOME AWESOME STUFF
|
||
|
This is a random text related to the previous title
|
||
|
Votes: 10 / 500
|
||
|
[Vote]
|
||
|
|
||
|
</div>
|
||
|
|
||
|
module.exports = Proposal;
|