Created
January 14, 2017 16:44
-
-
Save npverni/c3734d5b9926411cd28dbf5555e879b1 to your computer and use it in GitHub Desktop.
Creating a React Component using ES6 React.Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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