Skip to content

Instantly share code, notes, and snippets.

@wwwhatley
Last active July 10, 2018 12:25
Show Gist options
  • Save wwwhatley/491acb7fd297f7496666205ea4535ed0 to your computer and use it in GitHub Desktop.
Save wwwhatley/491acb7fd297f7496666205ea4535ed0 to your computer and use it in GitHub Desktop.
Functional stateless component
const GreetingCard = (props) => {
return (
<div>
<h1>Hello! {props.name}</h1>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment