import React from 'react'; import { ListContainer } from "meteor/utilities:react-list-container"; import { ModalTrigger } from "meteor/nova:core"; const PostsCommentsThread = ({document, currentUser}) => { const post = document; return (

Comments

{ currentUser ?

New Comment:

:
Please log in to comment}>
}
) }; PostsCommentsThread.displayName = "PostsCommentsThread"; module.exports = PostsCommentsThread; export default PostsCommentsThread;