Angular job portal app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 line
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;