first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-02-11 17:27:29 -05:00
commit 4502274b95
3060 changed files with 142768 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import {Route, Routes} from 'react-router-dom'
import {Registration} from './components/Registration'
import {ForgotPassword} from './components/ForgotPassword'
import {Login} from './components/Login'
import {AuthLayout} from './AuthLayout'
const AuthPage = () => (
<Routes>
<Route element={<AuthLayout />}>
<Route path='login' element={<Login />} />
<Route path='registration' element={<Registration />} />
<Route path='forgot-password' element={<ForgotPassword />} />
<Route index element={<Login />} />
</Route>
</Routes>
)
export {AuthPage}