import React from 'react'; import { Accounts } from 'meteor/std:accounts-ui'; import SmartContainers from "meteor/utilities:react-list-container"; const ListContainer = SmartContainers.ListContainer; const PostPage = ({document, currentUser}) => { ({CommentList, CommentNew, PostItem, PostCategories, SocialShare, Vote, PostStats, HeadTags} = Telescope.components); const post = document; const htmlBody = {__html: post.htmlBody}; return (
{/**/}
{/**/}

Comments

{ currentUser ?

New Comment:

:

Please login to comment:

}
) }; module.exports = PostPage;