Repeating td tags inside a repeating tr tag in react
Clash Royale CLAN TAG #URR8PPP Repeating td tags inside a repeating tr tag in react Hi i've been trying to do the following in react but I get this error: Uncaught Error: Objects are not valid as a React child (found: object with keys {id, address, long, lat, cityId, cityDistrict, phone, name, userId, city}). If you meant to render a collection of children, use an array instead or wrap the object using createFragment(object) from the React add-ons. Check the render method of Comparison . Comparison this is my code: let comparedProperties = { id: [1001,1002], address: ["abc","def"], }; let comparedItemsData = ; for (var key in comparedProperties) { if (comparedProperties.hasOwnProperty(key)) { let newTDs = ; let newTR = <tr key={Math.random()} className="compare-table-row"> <td className="table-item-header"> {key} ...