mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 23:00:12 +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);
|