import React, { Component } from "react"; import ExamEditPage from "./compoents/ExamEditPage"; import ExamDetailAnalysisPage from "./compoents/ExamDetailAnalysisPage"; interface States { resData: any visible: boolean title: string current: any } class ExamDetailAnalysis extends Component { constructor(props: any) { super(props); this.state = { resData: undefined, visible: false, title: '', current: {} } } componentDidMount() { // this.getList() } render() { return (
) } } export default ExamDetailAnalysis;