mirror of
https://github.com/wassname/talk.git
synced 2026-07-14 11:18:50 +08:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
import LikeButton from './containers/LikeButton';
|
|
|
|
import translations from './translations.json';
|
|
import {loadTranslations} from '/coral-framework/services/i18n';
|
|
|
|
loadTranslations(translations);
|
|
|
|
export default {
|
|
slots: {
|
|
commentReactions: [LikeButton]
|
|
}
|
|
};
|