Created
July 1, 2017 19:51
-
-
Save colynb/e858aa1f5242e8e3353bb6606cf90227 to your computer and use it in GitHub Desktop.
Ways to write React components
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
class MyComponent { | |
render () { | |
return ( | |
<h1>My Component</h1> | |
) | |
} | |
} | |
var HelloWorld = function(props) { | |
return ( | |
<h1>Hello World</h1> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment