/* * @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 = ()=>{ useEffect(() => { }, []); return ( { // children已被iframe代理,详细请查看MccsPageContainer组件 } ) } export default QuestionGatherAndRevise