タグの下の名前と製品はレンダリングされますが、ループのループはレンダリングされません..しかし、コンソールの値を見ることができます.nadはエラーをスローしません...ヘンプしてください
<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>