Пример:
Код: Выделить всё
var test = React.createClass({
render: function(){
return (
);
}
});
Код: Выделить всё
var test = React.createClass({
componentDidUpdate: function(prevProp, prevState){
this.refs.test.innerHTML = "Hello";
},
render: function(){
return (
);
}
});
Подробнее здесь: https://stackoverflow.com/questions/373 ... tinnerhtml
Мобильная версия