Exemplo Basico ReactJS
Exemplo Basico ReactJS
by Angelo Rogério Rubin
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.2/JSXTransformer.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.2/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.2/react-with-addons.min.js"></script>
<script text="text/jsx">
var Counter = React.createClass({
getInitialState: function(){
return {
count : 0;
};
},
render: function(){
return (
<div>
<h2>Counter: {this.state.count}</h2>
<button onClick={this.increment}>+1</button>
</div>
);
}
});
React.render(<Counter/>, document.body);
</script>