Skip to content

Instantly share code, notes, and snippets.

@jonsherrard
Created September 23, 2015 12:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonsherrard/0b74214754fc30bce9b4 to your computer and use it in GitHub Desktop.
Save jonsherrard/0b74214754fc30bce9b4 to your computer and use it in GitHub Desktop.
An example ES6 React component
import React, { Component } from 'react'
export default class MyComponent extends Component {
render() {
return (
<div>
<h1>This is my Component</h1>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment