// @flow import React from 'react'; import CommentsList from 'component/commentsList'; import Empty from 'component/common/empty'; type Props = { uri: string, linkedComment: ?any, tags: Array, }; function ChannelDiscussion(props: Props) { const { uri, linkedComment, tags } = props; if (tags.includes('disable_comments')) { return ; } return (
); } export default ChannelDiscussion;