Skip to content

Instantly share code, notes, and snippets.

@frankfaustino
Created March 15, 2018 18:17
Show Gist options
  • Save frankfaustino/07f9b6beff60a74ac589b3dd5ed7f9e1 to your computer and use it in GitHub Desktop.
Save frankfaustino/07f9b6beff60a74ac589b3dd5ed7f9e1 to your computer and use it in GitHub Desktop.
React: rest/spread operator and props
const MyComponent = ({ className, ...others }) => (
<div className={className}>
<MyOtherComponent {...others} />
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment