mirror of
https://github.com/wassname/talk.git
synced 2026-08-19 12:40:16 +08:00
10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
import React from 'react';
|
|
import styles from './CommentDeletedTombstone.css';
|
|
import t from 'coral-framework/services/i18n';
|
|
|
|
const CommentDeletedTombstone = () => (
|
|
<div className={styles.tombstone}>{t('framework.comment_is_deleted')}</div>
|
|
);
|
|
|
|
export default CommentDeletedTombstone;
|