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