d
This commit is contained in:
		| @@ -4,6 +4,9 @@ import viteLogo from '/vite.svg' | |||||||
| import './App.css' | import './App.css' | ||||||
| import FetchUtils from './components/fetchUtils/FetchUtils' | import FetchUtils from './components/fetchUtils/FetchUtils' | ||||||
| import TableMeets from './components/TableMeets' | import TableMeets from './components/TableMeets' | ||||||
|  | import { BrowserRouter, Routes, Route } from "react-router-dom"; | ||||||
|  | import BeingPage from "./Components/BeingPage/index.jsx"; | ||||||
|  | import HomePage from "./Components/HomePage/index.jsx"; | ||||||
|  |  | ||||||
| const events = [ | const events = [ | ||||||
|   { |   { | ||||||
| @@ -38,6 +41,12 @@ function App() { | |||||||
|     <> |     <> | ||||||
|       {/* <FetchUtils /> */} |       {/* <FetchUtils /> */} | ||||||
|       <TableMeets  events={ events } /> |       <TableMeets  events={ events } /> | ||||||
|  |       <BrowserRouter> | ||||||
|  |         <Routes> | ||||||
|  |           <Route path="/being" element={<BeingPage />}/> | ||||||
|  |           <Route path="/" element={<HomePage />}/> | ||||||
|  |         </Routes> | ||||||
|  |       </BrowserRouter> | ||||||
|     </> |     </> | ||||||
|   ) |   ) | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user