Skip to content

Instantly share code, notes, and snippets.

@cmilfont
Last active August 15, 2016 18:09
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 cmilfont/f33962f158c10bb09d7d62a080566623 to your computer and use it in GitHub Desktop.
Save cmilfont/f33962f158c10bb09d7d62a080566623 to your computer and use it in GitHub Desktop.
Properties in ES6
class Form extends React.Component {
constructor(props) {
super(props);
this.state = {};
this.handleCreate = this.handleCreate.bind(this);
}
}
Form.propTypes = {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment