mirror of
https://github.com/wassname/talk.git
synced 2026-07-18 12:40:13 +08:00
13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
import React from 'react';
|
|
import {compose} from 'react-apollo';
|
|
import {withSetCommentStatus} from 'coral-framework/graphql/mutations';
|
|
import RejectCommentAction from '../components/RejectCommentAction';
|
|
|
|
// change this
|
|
|
|
const enhance = compose(
|
|
withSetCommentStatus
|
|
);
|
|
|
|
export default enhance(RejectCommentAction);
|