Skip to content

Instantly share code, notes, and snippets.

@rodoabad
Last active October 5, 2018 13:01
Show Gist options
  • Save rodoabad/47f2252452b1faa1f3d7c8703c59058a to your computer and use it in GitHub Desktop.
Save rodoabad/47f2252452b1faa1f3d7c8703c59058a to your computer and use it in GitHub Desktop.
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