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

{post.title}

{post.commentCount} comments

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

{post.categoriesArray ? : ""}

Comments

New Comment:

) } module.exports = Post;