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

{props.title}

{props.commentCount} comments

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

{props.body}

Comments

) } module.exports = Post;