Skip to content

Instantly share code, notes, and snippets.

@suzdalnitski
Last active September 3, 2018 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzdalnitski/3499f139057e4e7172e5cbca163a41c0 to your computer and use it in GitHub Desktop.
Save suzdalnitski/3499f139057e4e7172e5cbca163a41c0 to your computer and use it in GitHub Desktop.
const Greetings = (props) => <div>Hey you! {props.firstName} {props.lastName}!</div>;
const App = () => (
<div>
<Greetings firstName="John" lastName="Smith" />
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment