according to your data you can do something like this:
<table>
<tr>
<th>Id</th>
<th>Charge</th>
<th>Description</th>
<th>Hours</th>
</tr>
{{#each timecardDetails}}
<tr>
<td>{{id}}</td>
<td>{{chargeCode}}</td>
<td>{{description}}</td>
<td>{{hours}}</td>
</tr>
{{/each}}
</table>