Skip to content

Instantly share code, notes, and snippets.

@gilbox
Created June 30, 2015 04:48
Show Gist options
  • Save gilbox/c3cc5a8a35252762c8c0 to your computer and use it in GitHub Desktop.
Save gilbox/c3cc5a8a35252762c8c0 to your computer and use it in GitHub Desktop.
Classy Functional React: Creating a Component
@elegant
class Hello extends Component {
render() {
const {name} = this.props;
return <div>Hello, {name}!</div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment