html`<center>
<button class="button is-primary"
onclick=${() => {
stripe.redirectToCheckout({
lineItems: [{
price: 'price_1He4G9HGNosi6Ft0RInpHMHu',
quantity: 1,
}],
mode: 'payment',
successUrl: 'https://observablehq.com/@tomlarkworthy/stripe?success',
cancelUrl: 'https://observablehq.com/@tomlarkworthy/stripe?cancel',
});
}}>☕ Buy Tom a coffee...</button></center>`