index.tsx 796 B

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