mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 15:23:50 +08:00
16 lines
418 B
JavaScript
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]
|
|
}
|
|
};
|