Email verification frontend.

This commit is contained in:
2022-09-09 08:39:46 +02:00
parent 65d62e8e49
commit 637dfb45d8
10 changed files with 113 additions and 48 deletions

View File

@@ -5,7 +5,7 @@ const Home = lazy(() => import("./views/home/Home"));
const AuthLayout = lazy(() => import("./views/auth/AuthLayout"));
const Login = lazy(() => import("./views/auth/Login"));
const Register = lazy(() => import("./views/auth/Register"));
const VerifyEmail = lazy(() => import("./views/auth/VerifyEmail"));
const AppRouter: Component = () => {
return (
<Routes>
@@ -13,6 +13,7 @@ const AppRouter: Component = () => {
<Route path="/auth" element={<AuthLayout />}>
<Route path="/login" element={<Login />}></Route>
<Route path="/register" element={<Register />}></Route>
<Route path="/verify-email" element={<VerifyEmail />}></Route>
</Route>
</Routes>
);