He escrito un código para renderizar elementos repetidos en ReactJS, pero odio lo feo que es.
render: function(){
var titles = this.props.titles.map(function(title) {
return <th>{title}</th>;
});
var rows = this.props.rows.map(function(row) {
var cells = [];
for (var i in row) {
cells.push(<td>{row[i]}</td>);
}
return <tr>{cells}</tr>;
});
return (
<table className="MyClassName">
<thead>
<tr>{titles}</tr>
</thead>
<tbody>{rows}</tbody>
</table>
);
}
¿Existe una mejor manera de lograrlo?
(Me gustaría incrustar for
bucles dentro del código de la plantilla o algún enfoque similar).