diff --git a/src/components/User/Cart/index.tsx b/src/components/User/Cart/index.tsx index fe43911..5b2b28c 100644 --- a/src/components/User/Cart/index.tsx +++ b/src/components/User/Cart/index.tsx @@ -168,7 +168,7 @@ function index() { -
+
- +
@@ -239,7 +236,7 @@ function index() { or{' '} diff --git a/src/components/User/Header/Cart.tsx b/src/components/User/Header/Cart.tsx new file mode 100644 index 0000000..d572b1a --- /dev/null +++ b/src/components/User/Header/Cart.tsx @@ -0,0 +1,30 @@ +import { Link } from 'react-router-dom'; + +const Cart = () => { + return ( + + + + ); +}; + +export default Cart; diff --git a/src/components/User/Header/index.tsx b/src/components/User/Header/index.tsx index 88f0f28..9934eac 100644 --- a/src/components/User/Header/index.tsx +++ b/src/components/User/Header/index.tsx @@ -2,6 +2,7 @@ import DropdownNotification from './DropdownNotification'; import DropdownUser from './DropdownUser'; import DarkModeSwitcher from './DarkModeSwitcher'; import { Link } from 'react-router-dom'; +import Cart from './Cart'; const Header = (props: { sidebarOpen: string | boolean | undefined; @@ -101,6 +102,7 @@ const Header = (props: {
    +
{/* */}