Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created June 17, 2015 21:17
Show Gist options
  • Select an option

  • Save codedmart/fee8e70484b4ba243f95 to your computer and use it in GitHub Desktop.

Select an option

Save codedmart/fee8e70484b4ba243f95 to your computer and use it in GitHub Desktop.
/** @jsx React.DOM */
var React = require('react');
module.exports = React.createClass({
componentDidMount: function() {
console.log('Yeah component mounted');
},
render: function() {
return <div>
<h1>Hello world</h1>
</div>
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment