Skip to content

Instantly share code, notes, and snippets.

@colynb
Created July 1, 2017 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colynb/e858aa1f5242e8e3353bb6606cf90227 to your computer and use it in GitHub Desktop.
Save colynb/e858aa1f5242e8e3353bb6606cf90227 to your computer and use it in GitHub Desktop.
Ways to write React components
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