Files
talk/plugins/talk-plugin-rich-text-pell/client/containers/CommentContent.js
T

13 lines
328 B
JavaScript

import { gql } from 'react-apollo';
import { withFragments } from 'plugin-api/beta/client/hocs';
import CommentContent from '../components/CommentContent';
export default withFragments({
comment: gql`
fragment TalkPluginRTE_CommentContent_comment on Comment {
body
richTextBody
}
`,
})(CommentContent);