This commit is contained in:
Sevka 2023-12-22 19:08:22 +03:00
parent 80d7f405db
commit bb3f49c4ed

View File

@ -4,6 +4,9 @@ import viteLogo from '/vite.svg'
import './App.css'
import FetchUtils from './components/fetchUtils/FetchUtils'
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 = [
{
@ -38,6 +41,12 @@ function App() {
<>
{/* <FetchUtils /> */}
<TableMeets events={ events } />
<BrowserRouter>
<Routes>
<Route path="/being" element={<BeingPage />}/>
<Route path="/" element={<HomePage />}/>
</Routes>
</BrowserRouter>
</>
)
}