Not used in the public UI! Only to be used for the admin UI, where we actually need tables.
<table>
<tr>
<th>Wood name</th>
<th>Price</th>
<th>Description</th>
</tr>
<tr>
<td>Text1</td>
<td>£50,000</td>
<td>Text2</td>
</tr>
<tr>
<td>Text1</td>
<td>£50,000</td>
<td>Text2</td>
</tr>
<tr>
<td>Text1</td>
<td>£50,000</td>
<td>Text2</td>
</tr>
</table>
<table>
<tr>
<th>Wood name</th>
<th>Price</th>
<th>Description</th>
</tr>
{{#each rows }}
{{ render '@tablerow' this merge=true }}
{{/each}}
</table>