all cart
This commit is contained in:
@ -26,8 +26,17 @@ const CartList2: React.FC = () => {
|
||||
<p>Вернитесь на предыдущий шаг и выберите товары</p>
|
||||
</div>
|
||||
) : (
|
||||
selectedItems.map((item) => (
|
||||
<div className="div-block-21-copy" key={item.id}>
|
||||
selectedItems.map((item, index) => (
|
||||
<div
|
||||
className={
|
||||
"div-block-21-copy" +
|
||||
(index === 0 ? " border-t-0" : "")
|
||||
}
|
||||
style={
|
||||
index === 0 ? { borderTop: 'none' } : undefined
|
||||
}
|
||||
key={item.id}
|
||||
>
|
||||
<div className="w-layout-hflex cart-item-check">
|
||||
<div className="w-layout-hflex info-block-search">
|
||||
<div className="text-block-35">{item.quantity}</div>
|
||||
|
Reference in New Issue
Block a user