import React from 'react'; import styles from './index.less'; import router from 'umi/router'; const Index = ({ day }) => { const goHospitalExam = () => { return router.push('/exam/hospitalFinalExam'); }; return (
距离研究生考试还有 {day}天!
医学生期末考试
研究生考试
住院医生规培
执业医生考试
健康管理师
{/*
健康管理师
*/}
); }; export default Index;