Estoy tratando de hacer que ReactJS funcione con rieles usando este tutorial. Recibo este error:
Uncaught ReferenceError: React is not defined
Pero puedo acceder al objeto React en la consola del navegador
. También agregué public / dist / turbo-react.min.js como se describe aquí y también agregué una línea en application.js como se describe en esta respuesta a no tener suerte. Además, da el error://= require components
var React = require('react')
Uncaught ReferenceError: require is not defined
¿Alguien puede sugerirme cómo resolver esto?
[EDITAR 1]
Código fuente para referencia:
Este es mi comments.js.jsx
archivo:
var Comment = React.createClass({
render: function () {
return (
<div className="comment">
<h2 className="commentAuthor">
{this.props.author}
</h2>
{this.props.comment}
</div>
);
}
});
var ready = function () {
React.renderComponent(
<Comment author="Richard" comment="This is a comment "/>,
document.getElementById('comments')
);
};
$(document).ready(ready);
Y este es mi index.html.erb
:
<div id="comments"></div>