Skip to content

Instantly share code, notes, and snippets.

@publicJorn
Last active January 14, 2016 14:57
Show Gist options
  • Save publicJorn/cee089f2e35e515fddc7 to your computer and use it in GitHub Desktop.
Save publicJorn/cee089f2e35e515fddc7 to your computer and use it in GitHub Desktop.
React component in ES6 class syntax
import React, {Component} from 'react';
export class MyComponent extends Component {
constructor (props) {
super(props);
}
render () {
return (
<p>
hello
</p>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment