import ForgotPasswordPage from "./Pages/ForgotPassword"; import LoginPage from "./Pages/Login"; import NotFound from "./Pages/NotFound"; import RegisterPage from "./Pages/Register"; import ResetPasswordPage from "./Pages/ResetPassword"; import VerifyEmail from "./Pages/VerifyEmail"; import Navigation from "CommonUI/src/Utils/Navigation"; import React, { ReactElement } from "react"; import { Route, Routes, useLocation, useNavigate, useParams, } from "react-router-dom"; function App(): ReactElement { Navigation.setNavigateHook(useNavigate()); Navigation.setLocation(useLocation()); Navigation.setParams(useParams()); return (
} /> } /> } /> } /> } /> } /> {/* 👇️ only match this when no other routes match */} } />
); } export default App;