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