Files
talk/plugins/talk-plugin-featured-comments/client/index.js
T
2017-07-13 15:30:06 -03:00

16 lines
418 B
JavaScript

import Tab from './containers/Tab';
import TabPane from './containers/TabPane';
import FeaturedTag from './components/FeaturedTag';
import FeaturedButton from './components/FeaturedButton';
import translations from './translations.json';
export default {
translations,
slots: {
streamTabs: [Tab],
streamTabPanes: [TabPane],
commentInfoBar: [FeaturedTag],
commentReactions: [FeaturedButton]
}
};