You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
765 B
35 lines
765 B
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<any, States> { |
|
constructor(props: any) { |
|
super(props); |
|
this.state = { |
|
resData: undefined, |
|
visible: false, |
|
title: '', |
|
current: {} |
|
} |
|
} |
|
|
|
componentDidMount() { |
|
// this.getList() |
|
} |
|
|
|
render() { |
|
return ( |
|
<div className="container"> |
|
<ExamDetailAnalysisPage/> |
|
</div> |
|
) |
|
} |
|
} |
|
|
|
export default ExamDetailAnalysis; |