I have a JSON string like so:
{"In Progress":1,"Re-assigned":0,"Completed":0,"Submitted":1,"Reviewed":0,"Assigned":0,"Unassigned":0,"Draft":1,"In Review":0}
I want to put it into a simple table formatted like so:
<table>
<thead>
<tr>
<th>State Name</th>
<th>Count</th>
</tr>
</thead>
What do I put as the <tr> and <td> classes?