Last active
October 5, 2018 13:01
-
-
Save rodoabad/47f2252452b1faa1f3d7c8703c59058a to your computer and use it in GitHub Desktop.
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
import React, {Fragment} from 'react'; | |
export const UserGreeting = ({firstName, lastName}) => ( | |
<Fragment>{`Hello, ${firstName} ${lastName}!`}</Fragment> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment