Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created May 14, 2015 02:12
Show Gist options
  • Save brentvatne/a9361ac9cd4c742292ac to your computer and use it in GitHub Desktop.
Save brentvatne/a9361ac9cd4c742292ac to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://fb.me/react-with-addons-0.13.3.js"></script>
<script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
<title>React Example</title>
</head>
<body>
</body>
<script type="text/jsx;harmony=true">
var CounterApp = React.createClass({
getInitialState() {
return {count: 0};
},
incrementCount() {
this.setState({count: this.state.count + 1});
},
render() {
return (
<div>
<h2>My first React app</h2>
<span onClick={this.incrementCount}>{this.state.count} clicks</span>
</div>
)
}
});
React.render(<CounterApp />, document.querySelector('body'));
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment