mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-23 09:12:33 +08:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import { Empty } from 'antd';
|
|
|
|
import { useI18n } from '../i18n';
|
|
|
|
export default function OfflineDownloadPage() {
|
|
const { t } = useI18n();
|
|
return <Empty description={t('No offline download tasks')} />;
|
|
}
|