Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created December 2, 2015 05:34
Show Gist options
  • Save ericelliott/6062775442c880798f94 to your computer and use it in GitHub Desktop.
Save ericelliott/6062775442c880798f94 to your computer and use it in GitHub Desktop.
Pure Component with propTypes
export default React => {
const hello = ({ helloClass }) => {
return <p className={ helloClass }>Hello, World!</p>;
};
hello.propTypes = {
helloClass: React.PropTypes.string.isRequired
};
return hello;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment