# 基本 - order: 0 最基础的例子。 --- ````jsx var Modal = antd.Modal; var Test = React.createClass({ showModal() { this.refs.modal.show(); }, handleOk() { console.log('点击了确定'); this.refs.modal.hide(); }, handleCancel() { console.log('点击了取消'); }, render() { return

对话框的内容

; } }); React.render( , document.getElementById('components-modal-demo-basic')); ````