File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import React from 'react';
22import { BrowserRouter as Router , Route , Routes } from 'react-router-dom' ;
33import Header from './components/layout/header' ;
44import { StoreProvider } from './context/store_context' ;
5- import Heom from './pages/home/home' ;
65import ProductList from './pages/products/products' ;
76import Cart from './pages/cart/cart' ;
87import Profile from './pages/profile/profile' ;
98import './styles/global.css' ;
9+ import Home from './pages/home/home' ;
1010
1111const App = ( ) => {
1212 return (
@@ -17,7 +17,6 @@ const App = () => {
1717 < Routes >
1818 < Route path = "/" element = { < Home /> } />
1919 < Route path = "/products" element = { < ProductList /> } />
20- < Route path = "/wishlist" element = { < Wishlist /> } />
2120 < Route path = "/cart" element = { < Cart /> } />
2221 < Route path = "/profile" element = { < Profile /> } />
2322 </ Routes >
You can’t perform that action at this time.
0 commit comments