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