问题: 不能将类型“{ children: Element[]; title: string; open: boolean; onOk: () => void; onCancel: () => void; }”分配给类型“IntrinsicAttributes & ModalProps & { children?: ReactNode; }”。 类型“IntrinsicAttributes & ModalProps & { children?: ReactNode; }”上不存在属性“open”。
原因:
完美解决:
<Modal title='Basic Modal' visible={isModalOpen} onOk={handleOk} onCancel={handleCancel}>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Modal>