diff options
Diffstat (limited to 'src/Feed')
-rw-r--r-- | src/Feed/Feed.tsx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Feed/Feed.tsx b/src/Feed/Feed.tsx new file mode 100644 index 0000000..e5bc9aa --- /dev/null +++ b/src/Feed/Feed.tsx @@ -0,0 +1,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 usedStyles = makeStyles(theme => ({ + feed: { + maxWidth: theme.spacing(75), + margin: '0 auto' + } +})); + +const Feed: React.FC<PropTypes> = ({ polls }) => { + const classes = usedStyles(); + + return ( + <div className={classes.feed}> + { + polls.map(poll => <PollCard poll={poll} />) + } + </div> + ); +}; + +export default Feed; |