Sign in screen with token retrieval

This commit is contained in:
2024-06-24 22:36:33 +08:00
parent 5eeaade098
commit 94a62f43b2
10 changed files with 191 additions and 8 deletions

View File

@@ -1,12 +1,14 @@
import { Route, Routes } from "react-router-dom";
import HomePage from "./pages/HomePage";
import SignUpPage from "./pages/SignUpPage";
import SignInPage from "./pages/SignInPage";
function App() {
return (
<Routes>
<Route element={<HomePage />} path="/" />
<Route element={<SignUpPage />} path="/signup" />
<Route element={<SignInPage />} path="/signin" />
</Routes>
);
}