Skip to content

Instantly share code, notes, and snippets.

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 DoctorDerek/31f212e4e14a102a3978a0beb9b73f5b to your computer and use it in GitHub Desktop.
Save DoctorDerek/31f212e4e14a102a3978a0beb9b73f5b to your computer and use it in GitHub Desktop.
Partial Object Destructuring of React Props With ... Rest Parameters Syntax https://medium.com/p/4e8629a02035
const CardComponent = ({ name, ...props }) => <div>name</div>
// That format is equivalent to including the following code:
const { name } = props
// As in the above example, there could be other stuff in props.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment