Skip to content

Commit fcac90a

Browse files
committed
fix
1 parent 1a6ec0e commit fcac90a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/App.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import React from 'react';
22
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
33
import Header from './components/layout/header';
44
import { StoreProvider } from './context/store_context';
5-
import Heom from './pages/home/home';
65
import ProductList from './pages/products/products';
76
import Cart from './pages/cart/cart';
87
import Profile from './pages/profile/profile';
98
import './styles/global.css';
9+
import Home from './pages/home/home';
1010

1111
const 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>

0 commit comments

Comments
 (0)