Skip to content

Instantly share code, notes, and snippets.

@Siemko
Created November 6, 2017 14:23
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 Siemko/82d243abc71768efc0d6fabd8757a858 to your computer and use it in GitHub Desktop.
Save Siemko/82d243abc71768efc0d6fabd8757a858 to your computer and use it in GitHub Desktop.
const Greeting = ({ name, ...props }) => {
if (!name) {
return <div>Loading...</div>
}
return <div {...props}>Hi {name}!</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment