import React from 'react'; import { Button, Modal } from 'antd'; export default class HelloModal extends React.Component { constructor() { super(); this.state = { visible: false, }; this.setVisible = visible => this.setState({ visible }); } render() { const { visible } = this.state; return (
this.setVisible(false)} onCancel={() => this.setVisible(false)} title="Install" > $ yarn add qiankun # or npm i qiankun -S
); } }