Skip to content

Commit

Permalink
Changes to be committed:
Browse files Browse the repository at this point in the history
	modified:   client/src/App.tsx
  • Loading branch information
Thith-thith committed Aug 7, 2023
1 parent 8297234 commit 78a7d5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Footer from "./components/layouts/Footer";
import Contact from "./pages/contact";
import Cart from "./pages/cart";
import ProductDetail from "./pages/products/details";
import Products from "./pages/products";
import Products from "./pages/products/index";
import News from "./pages/news";
import SinglePageNews from "./pages/news/singlePage";
import Favorite from "./pages/favorite";
Expand All @@ -23,7 +23,7 @@ const App: Component = () => {
<Route path="/about-us" component={About} />
<Route path="/contact-us" component={Contact} />
<Route path="/cart" component={Cart} />
<Route path="/products" component={Products} />
<Route path="/items" component={Products} />
<Route path="/products/:id?" component={ProductDetail} />
<Route path="/news" component={News} />
<Route path="/news/:id?" component={SinglePageNews} />
Expand Down

0 comments on commit 78a7d5a

Please sign in to comment.