Created
February 10, 2017 12:21
-
-
Save lewisnyman/32c39b7f57f6716a23ffcbc3f50562be to your computer and use it in GitHub Desktop.
React component template files
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
var HelloWorld = React.createClass({ | |
render() { | |
return ( | |
<div className="hello-world"> | |
<p>Hello world!</p> | |
</div> | |
); | |
} | |
}); |
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
<div className="hello-world"> | |
<p>Hello world!</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment