Skip to content

Instantly share code, notes, and snippets.

@manavsehgal
Created May 31, 2016 02:53
Show Gist options
  • Save manavsehgal/0a76abab0bee24e580dab3c5f983c784 to your computer and use it in GitHub Desktop.
Save manavsehgal/0a76abab0bee24e580dab3c5f983c784 to your computer and use it in GitHub Desktop.
Custom Hello stateless component
import React from 'react';
const Hello = ({ greet, message }) => (
<h3>
{greet} {message}
</h3>
);
Hello.propTypes = {
greet: React.PropTypes.string,
message: React.PropTypes.string
};
export default Hello;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment