aboutsummaryrefslogtreecommitdiff
path: root/src/components/Feed/Feed.tsx
blob: 8dc3ec1c7919905ca3cf696d724245f28ccd7e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import { Poll } from '../../types';
import PollCard from '../PollCard/PollCard';

interface PropTypes {
  polls: Poll[];
}

const useStyles = makeStyles(theme => ({
  root: {
    position: 'relative',
    maxWidth: theme.spacing(75),
    margin: '0 auto'
  }
}));

const Feed: React.FC<PropTypes> = ({ polls }) => {
  const classes = useStyles();

  return (
    <div className={classes.root}>
      {polls.map(poll => <PollCard poll={poll} key={poll._id} />)}
    </div>
  );
};

export default Feed;