diff --git a/src/components/AddToCart/AddToCart1/index.js b/src/components/AddToCart/AddToCart1/index.js index 24cf10a..6f16183 100644 --- a/src/components/AddToCart/AddToCart1/index.js +++ b/src/components/AddToCart/AddToCart1/index.js @@ -26,9 +26,9 @@ const AddToCart1 = ({ }, ]; return ( -
+
{showProduct && ( -
+
productImage { +const ProductTable1 = ({ navTitles, items }) => { return ( <> -
+
    {navTitles.map((item) => (
  • { ))}
-
-
+
+
{items.map((e) => e.items.map((item) => ( -
    +
    • {item.title}
    • -
    • +
    • {item.description}
    )) )}
-
{addToCart}
+
+ +
);