Полагаю, вы пытаетесь достичь чего-то подобного.
Я редактировал это в codesandbox здесь . https://codesandbox.io/s/sparkling-sound-yd1ih
return (
<div className="topsearches">
<table border="2" align="center">
<thead>
<th> Search Term </th>
<th>Count </th>
</thead>
<tbody>
{props.topSearches.map((top_search, index) =>
Object.keys(top_search).map((key, index) => {
return (
<tr>
<td>{key}</td>
<td>{top_search[key]}</td>
</tr>
);
})
)}
</tbody>
</table>
</div>
);
Модификация, которую я сделал для достижения этой цели:
- Добавлено
<thead>
- Исправлено
<tbody>
Петля
Пожалуйста, дайте мне знать, если у вас есть дополнительные вопросы!