mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 23:22:24 +08:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
import React from 'react';
|
|
import I18n from 'coral-framework/modules/i18n/i18n';
|
|
import translations from 'coral-framework/translations.json';
|
|
const lang = new I18n(translations);
|
|
|
|
export default () => (
|
|
<span>{lang.t('suspendedAccountMsg')}</span>
|
|
);
|