Angular job portal app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
345 B

  1. import styles from './InterviewRounds.module.scss';
  2. import Button from "../../components/button/Button";
  3. import Header from "./Header";
  4. import { IonHeader, IonPage } from '@ionic/react';
  5. const InterviewRounds: React.FC = () => {
  6. return (
  7. <IonPage>
  8. <Header />
  9. </IonPage>
  10. )
  11. }
  12. export default InterviewRounds;