mirror of
https://github.com/wassname/talk.git
synced 2026-07-07 22:39:03 +08:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
import React from 'react';
|
|
import styles from './StreamError.css';
|
|
import t from 'coral-framework/services/i18n';
|
|
|
|
export const StreamError = () => (
|
|
<div className={styles.streamError}>
|
|
{t('common.error')}
|
|
</div>
|
|
);
|