I Have and array and it will contain values as bellow
SelfData = [
["Mortgage on Marrickville investment property (with C. Tebbutt)", "Commonwealth Bank"],
["Mortgage on Dulwich Hill investment property", "Commonwealth Bank"],
];
I want to show these values in a table similar to this

I tried as bellow.but it's doesn't display values as expected
<table>
<tr>
<th></th>
<th>Nature of liability</th>
<th>Creditor</th>
</tr>
<tr>
<td>Self</td>
<td>{SelfData.map((data,i)=>{
return <tr>{data}</tr>
})}
</td>
</tr>
</table>