| import React from 'react'; |
| import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; |
| import LoginPage from './pages/LoginPage/LoginPage'; |
| import RegisterPage from './pages/RegisterPage/RegisterPage'; |
| import ForgotPasswordPage from './pages/ForgotPasswordPage/ForgotPasswordPage'; |
| import TestDashboard from './pages/TestDashboard/TestDashboard'; |
| import './App.css'; |
| |
| function App() { |
| return ( |
| <div className="App"> |
| <Router> |
| <Routes> |
| <Route path="/" element={<LoginPage />} /> |
| <Route path="/login" element={<LoginPage />} /> |
| <Route path="/register" element={<RegisterPage />} /> |
| <Route path="/forgot-password" element={<ForgotPasswordPage />} /> |
| <Route path="/test-dashboard" element={<TestDashboard />} /> |
| </Routes> |
| </Router> |
| </div> |
| ); |
| } |
| |
| export default App; |