Skip to content

Instantly share code, notes, and snippets.

@sunkay
Created January 3, 2016 03:14
Show Gist options
  • Save sunkay/99aac4475455bd4a5dbb to your computer and use it in GitHub Desktop.
Save sunkay/99aac4475455bd4a5dbb to your computer and use it in GitHub Desktop.
import React from 'react';
class Hello extends React.Component {
render() {
return <span>Hello {this.props.name}</span>;
}
}
export default Hello;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment