JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<script src="https://www.paypal.com/sdk/js?client-id=sb"></script>
<script>
paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
'purchase_units': [{
'amount': {
'currency_code': 'GBP',
'value': '5',
},
}]
})
}
}).render('body')
</script>
</body>