2
С:Как динамически декларируют компоненты
this.props.components = [{component: input}, {component: button}]
В этом коде:
var React = require('react');
var form = React.createClass({
render: function() {
var components = [];
var component = null;
//console.log(this.props.components);
for (var i=0; i < this.props.components.length; i++) {
console.log(this.props.components[i]);
component = this.props.components[i].component;
components.push(<component />);
}
console.log(components);
return (
<div>
{components}
</div>
);
}
});
module.exports = form;
Моя проблема заключается в том, что вместо того, чтобы вынести DIV, содержащий вход и кнопку его визуализацию два недействительных элементов типа "компонент". Любые идеи?