import React, { Component } from "react"; import { Button, Modal } from "antd"; import ExcelEditor from "../../components/excelEditor"; class Index extends Component { constructor(props) { super(props); this.state = { title: "DialogTitle", visible: false, lvisible: false }; } render() { return (
{}}/> this.setState({ visible: false })} > {}}/>
); } } export default Index;