import { Alert, Flex } from 'antd'; import { useTranslate } from '@/hooks/common-hooks'; import React from 'react'; import styles from './index.less'; const FileError = ({ children }: React.PropsWithChildren) => { const { t } = useTranslate('fileManager'); return ( {children || t('fileError')}} > ); }; export default FileError;