Skip to content

Instantly share code, notes, and snippets.

@Siemko
Created November 6, 2017 14:23
Embed
What would you like to do?
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