Compare commits

...

2 Commits

Author SHA1 Message Date
dancingCycle 82b92eac86 feat: clear Home page 2023-07-25 18:04:06 +02:00
dancingCycle b5e4f567a3 feat: adjust home page 2023-02-15 15:38:11 +01:00
2 changed files with 5 additions and 3 deletions

View File

@ -19,7 +19,7 @@ export default function App() {
<BrowserRouter>
<NavBar />
<Routes>
<Route path="/" element={<Map />} />
<Route path="/" element={<Home />} />
<Route path="/table" element={<Table />} />
<Route path="/map" element={<Map />} />
<Route path="/contact" element={<Contact />} />

View File

@ -1,8 +1,10 @@
import React from 'react';
import React, {useState} from 'react';
import axios from 'axios';
export default function Home() {
return (
<>
<h1>Home</h1>
<p>Home</p>
</>
);
}