diff --git a/front-end/package.json b/front-end/package.json index 467cf33..4eb321f 100644 --- a/front-end/package.json +++ b/front-end/package.json @@ -8,6 +8,7 @@ "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-router-dom": "^6.22.2", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" }, diff --git a/front-end/src/App.js b/front-end/src/App.js index 3784575..1cccf5a 100644 --- a/front-end/src/App.js +++ b/front-end/src/App.js @@ -1,25 +1,34 @@ -import logo from './logo.svg'; import './App.css'; +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import Login from './screens/Login'; +import Home from './screens/Home'; +import Registration from './screens/Registration'; +import Accessories from './screens/Accessories'; +import All_Items from './screens/All_Items'; +import Coats_Jackets from './screens/Coats_Jackets'; +import Pants from './screens/Pants'; +import Shirt from './screens/Shirts'; +import Shoes from './screens/Shoes'; +import Skirts_Dresses from './screens/Skirts_Dresses'; function App() { return ( -
- Edit src/App.js
and save to reload.
-