// mb-cart.jsx — Product sheet, Cart, Checkout, Success, Review function Stepper({ qty, onDec, onInc, big }) { const s = big ? 44 : 34; return (
{qty}
); } function ProductSheet({ item, totalCb, startQty, onConfirm }) { const [qty, setQty] = React.useState(startQty || 1); const [note, setNote] = React.useState(""); if (!item) return null; return (
{item.img && item.img.startsWith("http") ? {item.name} : }

{item.name}

{money(item.price)}

{item.desc}

Alguma observação?