import React from 'react'; /** * 删除确认模态框组件 */ const DeleteConfirmModal = ({ show, title, isSubmitting, onCancel, onConfirm }) => { if (!show) return null; return (
您确定要删除知识库 "{title}" 吗?此操作不可撤销。