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