2024-05-23 09:43:09 +05:30
|
|
|
import { useState } from "react";
|
|
|
|
|
import reactLogo from "./assets/react.svg";
|
|
|
|
|
import viteLogo from "/vite.svg";
|
|
|
|
|
import "./App.css";
|
|
|
|
|
import AttendenceCorrection from "./Components/AttendenceCorrection";
|
|
|
|
|
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
|
|
|
|
import AnomolyReassigned from "./Components/AnomolyReassigned";
|
|
|
|
|
import Home from "./Components/Home";
|
|
|
|
|
import ReassignedStats from "./Components/ReassignedStats";
|
|
|
|
|
import IndividualExamCentreStats from "./Components/IndividualExamCentreStats";
|
|
|
|
|
import PartAReassigned from "./Components/PartAReassigned";
|
|
|
|
|
import PartACorrection from "./Components/PartACorrection";
|
2024-06-11 18:18:19 +05:30
|
|
|
import Verification from "./Components/Verification";
|
|
|
|
|
import Statistics from "./Components/Statistics";
|
2024-05-23 09:43:09 +05:30
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<BrowserRouter>
|
|
|
|
|
<Routes>
|
|
|
|
|
<Route path="/" element={<Home />}></Route>
|
|
|
|
|
<Route
|
|
|
|
|
path="/anomoly/reassigned"
|
|
|
|
|
element={<AnomolyReassigned />}
|
|
|
|
|
></Route>
|
|
|
|
|
<Route
|
|
|
|
|
path="/anomoly/reassigned/booklet"
|
|
|
|
|
element={<AttendenceCorrection />}
|
|
|
|
|
>
|
|
|
|
|
</Route>
|
|
|
|
|
<Route
|
|
|
|
|
path="/anomoly/reassigned/stats"
|
|
|
|
|
element={<ReassignedStats />}
|
|
|
|
|
>
|
|
|
|
|
</Route>
|
|
|
|
|
<Route
|
|
|
|
|
path="/anomoly/reassigned/stats/:exam_centre_code"
|
|
|
|
|
element={<IndividualExamCentreStats/>}
|
|
|
|
|
>
|
|
|
|
|
</Route>
|
2024-06-11 18:18:19 +05:30
|
|
|
<Route
|
2024-05-23 09:43:09 +05:30
|
|
|
path="/anomoly/PartA"
|
|
|
|
|
element={<PartAReassigned/>}
|
|
|
|
|
>
|
|
|
|
|
</Route>
|
2024-06-11 18:18:19 +05:30
|
|
|
{/* <Route
|
|
|
|
|
path="/verification"
|
|
|
|
|
element={<Verification/>}
|
|
|
|
|
>
|
|
|
|
|
</Route> */}
|
|
|
|
|
<Route path="/statistics" element={<Statistics/>}></Route>
|
2024-05-23 09:43:09 +05:30
|
|
|
<Route path="/anomoly/partA/booklet"
|
|
|
|
|
element={<PartACorrection/>}
|
|
|
|
|
>
|
2024-06-11 18:18:19 +05:30
|
|
|
</Route>
|
2024-05-23 09:43:09 +05:30
|
|
|
</Routes>
|
|
|
|
|
</BrowserRouter>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App;
|