mirror of
https://github.com/wassname/talk.git
synced 2026-07-05 03:21:53 +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;
|