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

{ currentUser ?

:
}>
}
) }; PostsCommentsThread.displayName = "PostsCommentsThread"; module.exports = PostsCommentsThread; export default PostsCommentsThread;