JSFiddle - React, Tailwind, and code Playground
JavaScript
const chargeTemplate = function(perUnit = 0, min = 0, currency = 'USD') {
return { perUnit, min, currency };
};
let charge = chargeTemplate(1, 2, 'usd');
console.log(charge);
console.log(chargeTemplate);