const PostPage = ({document, currentUser}) => { ({ListContainer, CommentList, CommentNew, PostCategories, SocialShare, Vote, PostStats} = 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 = PostPage;