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

{post.title}

{post.commentCount} comments

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

{post.categoriesArray ? : ""}

Comments

New Comment:

) } module.exports = Post;