You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/web/src/components/IsDeveloping.tsx

18 lines
498 B
TypeScript

import { Icon } from '@/components/Icon';
import { t } from 'tailchat-shared';
import React from 'react';
/**
* 正在开发中的功能
* 占位符
*/
export const IsDeveloping: React.FC = React.memo(() => {
return (
<div className="text-white w-full h-full flex items-center justify-center flex-col">
<Icon className="text-9xl" icon="mdi:code-braces" />
<p className="text-2xl">{t('该功能暂未开放')}</p>
</div>
);
});
IsDeveloping.displayName = 'IsDeveloping';