12345678910111213141516171819202122232425262728293031323334 |
- /*
- * @Author: your name
- * @Date: 2021-09-28 13:57:19
- * @LastEditTime: 2021-11-25 10:30:21
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: /MedicalWisdomCheckSys/src/pages/KeepImprove/questionGatherAndRevise/index.tsx
- */
- import React, { useEffect } from 'react'
- import MccsPageContainer from '@/components/MccsPageContainer/index';
- import './index.less';
- type QuestionGatherAndReviseProps = {}
- const QuestionGatherAndRevise: React.FC<QuestionGatherAndReviseProps> = ()=>{
- useEffect(() => {
- }, []);
- return (
- <MccsPageContainer>
- {
- // children已被iframe代理,详细请查看MccsPageContainer组件
- }
- </MccsPageContainer>
- )
- }
- export default QuestionGatherAndRevise
|