Restrict content in the comment stream when banned.

This commit is contained in:
gaba
2016-12-02 08:00:26 -08:00
parent da7f39c9e9
commit 1cda5b9099
5 changed files with 122 additions and 105 deletions
@@ -2,7 +2,10 @@ import React from 'react';
import I18n from 'coral-framework/modules/i18n/i18n';
import translations from 'coral-framework/translations.json';
const lang = new I18n(translations);
import styles from './RestrictedContent.css';
export default () => (
<span>{lang.t('suspendedAccountMsg')}</span>
<div className={styles.message}>
<span>{lang.t('suspendedAccountMsg')}</span>
</div>
);