Kenny Login - Highway to the Danger Zone

This commit is contained in:
MarcEricMartel
2022-10-30 15:14:50 -07:00
parent b50c1398a5
commit 41b5eff5b6
3 changed files with 54 additions and 1 deletions

View File

@@ -7,9 +7,9 @@ import ContactUs from "../pages/ContactUs";
import Morceaux from "../pages/Morceaux";
import MorceauDetail from "../pages/MorceauDetail";
import Inventaire from "../pages/Inventaire";
import Login from "../pages/Login";
const App = () => {
return (
<BrowserRouter>
<Routes>
@@ -21,6 +21,7 @@ const App = () => {
<Route path="privacy" element={<Privacy/>}/>
<Route path="morceaux/:id" element={<MorceauDetail/>}/>
<Route path="inventaire" element={<Inventaire/>}/>
<Route path="login" element={<Login/>}/>
</Route>
</Routes>
</BrowserRouter>