Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pfernandom/2a08824046c6af18e7f0bcffe85b654f to your computer and use it in GitHub Desktop.
Save pfernandom/2a08824046c6af18e7f0bcffe85b654f to your computer and use it in GitHub Desktop.
I created this gist using Octokit!
class Welcome extends React.Component {
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment