mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 04:45:23 +08:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
import {compose} from 'react-apollo';
|
|
import ModActionButton from '../components/ModActionButton';
|
|
import {withTags} from 'plugin-api/beta/client/hocs';
|
|
|
|
const enhance = compose(
|
|
withTags('featured'),
|
|
);
|
|
|
|
export default enhance(ModActionButton);
|