/* global React */ const { Badge, Button, Input, Select, Checkbox } = window.DesignSystem_b1e064; const BOTTLE_C = 'assets/images/cuoccio-bottle.jpg'; const TREE_CREAM_C = 'assets/logos/cuoccio-tree-cream.png'; function Checkout({ cart, onPay }) { const items = (cart && cart.length) ? cart : [{ label: 'Olio EVO — Lattina 5 L', price: '60,00 €', qty: 1, priceNum: 60 }]; const subtotal = items.reduce((s, it) => s + (it.priceNum || 0) * (it.qty || 1), 0); const fmtEuro = (n) => n.toFixed(2).replace('.', ',') + ' €'; const [pay, setPay] = React.useState('card'); return (
{/* steps */}
01 Carrello / 02 Dati / 03 Pagamento

Checkout sicuro

{/* FORM */}

Contatti

Hai un account? e.preventDefault()}>Accedi
✉} />

Indirizzo di spedizione

🔒} />
)}
{/* SUMMARY */}
); } function Row({ l, r }) { return
{l}{r}
; } window.Checkout = Checkout;