Files
react.dev/docs/likebutton/oneclick/app.js
2013-07-14 18:31:46 -07:00

25 lines
366 B
JavaScript

/**
* @jsx ReactDOM
*/
var React = require('React');
var MyApp = React.createComponent({
showMessage: function() {
alert('hello react!');
},
render: function() {
return (
<div onClick={this.showMessage.bind(this)}>
Click Me
</div>
);
}
});
// Only needed once per app.
React.renderComponent(<MyApp />, document.body);