Frontend hozzáadva
This commit is contained in:
1
frontend
1
frontend
Submodule frontend deleted from 4c60078551
24
frontend/peepal_react/src/App.js
Normal file
24
frontend/peepal_react/src/App.js
Normal file
@@ -0,0 +1,24 @@
|
||||
import Bejelentkezes from './WC_Komponens/Bejel_Regisz/Bejelentkezes';
|
||||
import Regisztracio from './WC_Komponens/Bejel_Regisz/Regisztracio';
|
||||
import Kereso from './WC_Komponens/Kereso/WC_Kereso';
|
||||
import Menusor from './NavBar/Menusor';
|
||||
import { Route, Routes } from 'react-router-dom';
|
||||
import Kezdolap from './WC_Komponens/Kezdolap/Kezdolap';
|
||||
import Fejlec from './WC_Komponens/Fejlec/Fejlec';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<>
|
||||
<Menusor />
|
||||
<Fejlec />
|
||||
<div>
|
||||
<Routes>
|
||||
<Route index element={<Kezdolap />}/>
|
||||
<Route path="/kereso" element={<Kereso />}/>
|
||||
<Route path="/bejelentkezes" element={<Bejelentkezes />}/>
|
||||
<Route path="/regisztracio" element={<Regisztracio />} />
|
||||
</Routes>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user