i am having an error with below code. it shows module build failed. I think the structure is missing some tag
<tbody>
{
ListItems.map((section) =>
<tr key={section.id}>
<td>{section.name}</td>
</tr>
{
section.items.map((item) =>
<tr key={item.id}> // the error is here
<td>{item.productName}</td>
</tr>
)})}
</tbody>