mirror of
https://github.com/wassname/talk.git
synced 2026-08-04 13:23:35 +08:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
import RespectButton from './containers/RespectButton';
|
|
|
|
import translations from './translations.json';
|
|
import {loadTranslations} from 'coral-i18n/services/i18n';
|
|
|
|
Promise.all([loadTranslations(translations)]);
|
|
|
|
export default {
|
|
slots: {
|
|
commentActions: [RespectButton],
|
|
}
|
|
};
|