I have a json object stored inside as an object called
job
It renders as
{"amount": " 12185","job": "GAPA","month": "JANUARY","year": "2010"}
I would like to know how to get it to look like this in jsx/javascript
{
"amount": " 12185",
"job": "GAPA",
"month": "JANUARY",
"year": "2010"
}
I was looking around and couldnt find anyone asking the same question