| @@ -46,70 +46,32 @@ const App: React.FC = () => ( | |||
| <IonReactRouter> | |||
| <IonRouterOutlet> | |||
| <Switch> | |||
| <Route exact path="/interviewRounds"> | |||
| <InterviewRounds /> | |||
| </Route> | |||
| <Route exact path="/skillInformationStep"> | |||
| <SkillInformationStep /> | |||
| </Route> | |||
| <Route exact path="/quiz"> | |||
| <Quiz /> | |||
| </Route> | |||
| <Route exact path="/preliminaryRound"> | |||
| <PreliminaryRound /> | |||
| </Route> | |||
| <Route exact path="/preliminaryRoundResults"> | |||
| <PreliminaryRoundResults /> | |||
| </Route> | |||
| <Route exact path="/technicalInterview"> | |||
| <TechnicalInterview /> | |||
| </Route> | |||
| <Route exact path="/technicalInterview/techinicalInterviewResults"> | |||
| <TechinicalInterviewResults /> | |||
| </Route> | |||
| <Route exact path="/assignment"> | |||
| <Assignment /> | |||
| </Route> | |||
| <Route exact path="/assignmentDetails"> | |||
| <AssignmentDetails /> | |||
| </Route> | |||
| <Route exact path="/SubmitAssignment"> | |||
| <SubmitAssignment /> | |||
| </Route> | |||
| <Route exact path="/ReviewAssignment"> | |||
| <ReviewAssignment /> | |||
| </Route> | |||
| <Route exact path="/assignmentCompleted"> | |||
| <AssignmentCompleted /> | |||
| </Route> | |||
| <Route exact path="/finalInterview"> | |||
| <FinalInterview /> | |||
| </Route> | |||
| <Route exact path="/finalInterview/results"> | |||
| <FinalInterviewResult /> | |||
| </Route> | |||
| <Route exact path="/closingDocs"> | |||
| <ClosingDocs /> | |||
| </Route> | |||
| <Route exact path="/verifiedDocs"> | |||
| <VerifiedDocs /> | |||
| </Route> | |||
| <Route exact path="/joiningLetter"> | |||
| <JoiningLetter /> | |||
| </Route> | |||
| <Route exact path="/joiningLetter/signaturePhoto"> | |||
| <SignaturePhoto /> | |||
| </Route> | |||
| <Route exact path="/celebration"> | |||
| <Celebration /> | |||
| </Route> | |||
| <Route exact path="/interviewRounds" component={InterviewRounds} /> | |||
| <Route exact path="/skillInformationStep" component={SkillInformationStep} /> | |||
| <Route exact path="/quiz" component={Quiz} /> | |||
| <Route exact path="/preliminaryRound" component={PreliminaryRound} /> | |||
| <Route exact path="/preliminaryRoundResults" component={PreliminaryRoundResults} /> | |||
| <Route exact path="/technicalInterview" component={TechnicalInterview} /> | |||
| <Route exact path="/technicalInterview/techinicalInterviewResults" component={TechinicalInterviewResults} /> | |||
| <Route exact path="/assignment" component={Assignment} /> | |||
| <Route exact path="/assignmentDetails" component={AssignmentDetails} /> | |||
| <Route exact path="/SubmitAssignment" component={SubmitAssignment} /> | |||
| <Route exact path="/ReviewAssignment" component={ReviewAssignment} /> | |||
| <Route exact path="/assignmentCompleted" component={AssignmentCompleted} /> | |||
| <Route exact path="/finalInterview" component={FinalInterview} /> | |||
| <Route exact path="/finalInterview/results" component={FinalInterviewResult} /> | |||
| <Route exact path="/closingDocs" component={ClosingDocs} /> | |||
| <Route exact path="/verifiedDocs" component={VerifiedDocs} /> | |||
| <Route exact path="/joiningLetter" component={JoiningLetter} /> | |||
| <Route exact path="/joiningLetter/signaturePhoto" component={SignaturePhoto} /> | |||
| <Route exact path="/celebration" component={Celebration} /> | |||
| <Route exact path="/"> | |||
| <Redirect to="/interviewRounds" /> | |||
| </Route> | |||
| </Switch> | |||
| </IonRouterOutlet> | |||
| </IonReactRouter> | |||
| </IonApp> | |||
| </IonApp > | |||
| ); | |||
| export default App; | |||