mirror of
https://github.com/wassname/talk.git
synced 2026-07-09 12:35:55 +08:00
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
import React from 'react';
|
|
|
|
import t from 'coral-framework/services/i18n';
|
|
|
|
const Loading = () => (
|
|
<h1> {t('loading_results')}</h1>
|
|
);
|
|
|
|
export default Loading;
|