import React from 'react'; import { Proposal, ProposalComments } from 'modules/proposals/reducers'; import Comment from 'components/Comment'; interface Props { comments: ProposalComments['comments']; proposalId: Proposal['proposalId']; } const Comments = ({ comments, proposalId }: Props) => ( {comments.map(c => ( ))} ); export default Comments;