/* * @Author: zhoux zhouxia@supervision.ltd * @Date: 2023-11-16 14:30:15 * @LastEditors: donghao donghao@supervision.ltd * @LastEditTime: 2024-07-02 15:41:40 * @FilePath: \general-ai-platform-web\src\components\BatchOperation\isBatchDelete.tsx * @Description: 集中删除 */ import { ExclamationCircleOutlined } from '@ant-design/icons'; // import { useIntl } from '@ant-design/pro-components'; import { FormattedMessage, useIntl } from '@umijs/max'; import { Button, Modal } from 'antd'; type IsBatchDeleteProps = { // eslint-disable-next-line @typescript-eslint/ban-types deleteApi: Function; }; const IsBatchDelete: React.FC = (props) => { const intl = useIntl(); return ( ); }; export default IsBatchDelete;