forgot password
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
hamid zarghami
2026-07-25 11:47:21 +03:30
parent c9713a93ac
commit 71e7d4eac2
8 changed files with 356 additions and 2 deletions
+3 -1
View File
@@ -2,13 +2,15 @@ import { FC } from 'react'
import { Route, Routes } from 'react-router-dom'
import { Pages } from '../config/Pages'
import Login from '../pages/auth/Login'
import ForgotPassword from '../pages/auth/ForgotPassword'
const AuthRouter: FC = () => {
return (
<Routes>
<Route path={Pages.auth.login} element={<Login />} />
<Route path={Pages.auth.forgotPassword} element={<ForgotPassword />} />
</Routes>
)
}
export default AuthRouter
export default AuthRouter