import React from 'react'; import { Spin } from '@douyinfe/semi-ui'; import { useTranslation } from 'react-i18next'; const Loading = ({ prompt: name = '', size = 'large' }) => { const { t } = useTranslation(); return (
{name ? t('加载{{name}}中...', { name }) : t('加载中...')}
); }; export default Loading;