name and Product under th tag gets rendered but the loop for doesn't get rendered..but i can see the values in console.nad doesn't throw any error...please hemp
<tr>
<th>name</th>
<th>productID</th>
{this.state.product[0].customCoulmns.forEach(function (columnhead) {
console.log("columnhead lolzz ",columnhead.columnName);
return <th key={columnhead.columnName}>{columnhead.columnName}</th>
}.bind(this))
}
</tr>