Components, UI/UX and Styling

This commit is contained in:
Belen Curcio
2017-08-01 12:38:41 -03:00
parent d40242f92f
commit 5266bfa647
4 changed files with 62 additions and 7 deletions
@@ -0,0 +1,15 @@
import {gql} from 'react-apollo';
import ModTag from '../components/ModTag';
import {withFragments} from 'plugin-api/beta/client/hocs';
export default withFragments({
comment: gql`
fragment TalkFeaturedComments_ModTab_comment on Comment {
tags {
tag {
name
}
}
}
`
})(ModTag);