mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 16:47:32 +08:00
12 lines
305 B
JavaScript
12 lines
305 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 TalkPluginCommentContent_comment on Comment {
|
|
body
|
|
}
|
|
`,
|
|
})(CommentContent);
|