JSFiddle - React, Tailwind, and code Playground
by joycse06
HTML
<ul>
</ul>
JavaScript
var data = {"figures":{"value":"150000","completion":"10.00","coal":"32.40","local":"144.00","bacs":"35.00","landRegistry":"200.00","solFee":"395.00","vatOnSolFees":79,"stampDuty":1500,"total":2395.4}};
$.each(data.figures, function(key, val) {
console.log('Key: '+key+' Val: '+val);
$('ul').append('<li>'+ key + ' = ' + val + '</li>');
});