const Post = (props) => { ({ListContainer, CommentList} = Telescope.components); const htmlBody = {__html: props.htmlBody}; return (

{props.title}

{props.commentCount} comments

{moment(props.postedAt).fromNow()}

Comments

) } module.exports = Post;