Created
June 17, 2015 21:17
-
-
Save codedmart/fee8e70484b4ba243f95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** @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