Skip to content

Commit

Permalink
feat route fixed done
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushpanditmoto committed Jan 11, 2023
1 parent 9b4854f commit e5b4c2c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import Forgot from "./Pages/ForgotPassword/ForgotPassword";
import NotFound from "./Pages/NotFound/NotFound";
import Home from "./Pages/Home/Home";
import Reset from "./Pages/ResetPassword/ResetPassword";
import EmailReset from "./Pages/EmailReset/EmailReset";
import ResetLink from "./Pages/ResetPassword/ResetLink";

function App() {
return (
Expand All @@ -17,6 +19,8 @@ function App() {
<Route path="/signup" element={<Signup />} />
<Route path="/forgot" element={<Forgot />} />
<Route path="/reset" element={<Reset />} />
<Route path="/emailreset" element={<EmailReset />} />
<Route path="/reset-link" element={<ResetLink />} />
<Route path="/profile" element={<Profile />} />
<Route path="/:path" element={<NotFound />} />
</Routes>
Expand Down

0 comments on commit e5b4c2c

Please sign in to comment.