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