Skip to content

Instantly share code, notes, and snippets.

@thanhlmm
Created September 18, 2021 13:21
Show Gist options
  • Save thanhlmm/6ca3448562975d07aa54c9b6af38b8b1 to your computer and use it in GitHub Desktop.
Save thanhlmm/6ca3448562975d07aa54c9b6af38b8b1 to your computer and use it in GitHub Desktop.
React props spread
const a = {
foo: "bar"
};
<Hello {...a} />
<Hello foo="bar" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment