import React, { Fragment } from 'react'; import Card from '@material-ui/core/Card'; import CardContent from '@material-ui/core/CardContent'; import Button from '@material-ui/core/Button'; import Typography from '@material-ui/core/Typography'; const Poll = ({ _question, _totalCensus, _voters }) => ( Proposal: {_question} Total SNT Voted: {_totalCensus} Number of voters: {_voters} ) const PollsList = ({ rawPolls }) => ( {rawPolls.map(poll => )} ) export default PollsList