Skip to content

Instantly share code, notes, and snippets.

@geetotes
Created March 15, 2017 20:54
Show Gist options
  • Save geetotes/15d85871fafcd78bec225c05554b6557 to your computer and use it in GitHub Desktop.
Save geetotes/15d85871fafcd78bec225c05554b6557 to your computer and use it in GitHub Desktop.
class NeatoComponent extends React.Component {
constructor() {
super();
this.state = {
foo: this.props.foo,
bar: this.props.bar
}
}
render() {
return (<p> Foo bar: {this.state.foo} {this.state.bar}</p>);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment