Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions client/src/routes/Routes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import { Switch, Route } from 'react-router-dom';
// Components
import Home from '../pages/Home/Home';
import Cart from '../pages/Cart/Cart';
import Checkout from '../pages/Checkout/Checkout';

// import Checkout from '../pages/Checkout/Checkout';
///test impot
const Routes = () => {
return (
<Switch>
<Route path="/" component={ Home } exact />
<Route path="/cart" component={ Cart } exact />
<Route path="/checkout" component={ Checkout } exact />
{/* <Route path="/checkout" component={ Checkout } exact /> */}
</Switch>
);
};
Expand Down