Last active
July 10, 2018 12:25
-
-
Save wwwhatley/491acb7fd297f7496666205ea4535ed0 to your computer and use it in GitHub Desktop.
Functional stateless component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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