Skip to content

Instantly share code, notes, and snippets.

@humaan
Created September 2, 2015 01:56
Show Gist options
  • Save humaan/c84dcda054212aa4e48f to your computer and use it in GitHub Desktop.
Save humaan/c84dcda054212aa4e48f to your computer and use it in GitHub Desktop.
// Import React
import React from 'react';
// Create class called HelloText that extends the base React Component class
export default class HelloText extends React.Component {
constructor(props) {
super(props);
}
render() {
return <p>Hello, {this.props.name}!</p>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment