Skip to content

Instantly share code, notes, and snippets.

@npverni
Created January 14, 2017 16:44
Show Gist options
  • Save npverni/c3734d5b9926411cd28dbf5555e879b1 to your computer and use it in GitHub Desktop.
Save npverni/c3734d5b9926411cd28dbf5555e879b1 to your computer and use it in GitHub Desktop.
Creating a React Component using ES6 React.Component
class Profile extends React.Component {
render() {
return(
<div>
<h1>{this.props.name}</h1>
<p>
{this.props.bio}
</p>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment