mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 17:54:04 +08:00
13 lines
353 B
JavaScript
13 lines
353 B
JavaScript
import { gql } from 'react-apollo';
|
|
import { withFragments } from 'plugin-api/beta/client/hocs';
|
|
import AdminCommentContent from '../components/AdminCommentContent';
|
|
|
|
export default withFragments({
|
|
comment: gql`
|
|
fragment TalkPluginRichText_AdminCommentContent_comment on Comment {
|
|
body
|
|
richTextBody
|
|
}
|
|
`,
|
|
})(AdminCommentContent);
|