import React from 'react'; import Posts from "meteor/nova:posts"; const PostsPage = ({document, currentUser}) => { const post = document; const htmlBody = {__html: post.htmlBody}; return (
{post.htmlBody ?
: null} {/**/}
) }; PostsPage.displayName = "PostsPage"; module.exports = PostsPage; export default PostsPage;