# 可关闭的警告提示 - order: 2 显示关闭按钮,点击可关闭警告提示。 --- ````jsx import { Alert } from 'antd'; const onClose = function (e) { console.log(e, '我要被关闭啦!'); }; ReactDOM.render(
, mountNode); ````