Skip to content

Instantly share code, notes, and snippets.

@heyjohnmurray
Last active November 22, 2015 20:50
Show Gist options
  • Save heyjohnmurray/49eeb6313c1313674155 to your computer and use it in GitHub Desktop.
Save heyjohnmurray/49eeb6313c1313674155 to your computer and use it in GitHub Desktop.
/** @jsx React.DOM */
var React = require('react');
var App = React.createClass({
render: function() {
var text = this.props.text;
return (
<h1>{text}</h1>
);
}
});
module.exports = App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment