Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save DoctorDerek/acd59884d2a41726208df5ea19f0212f to your computer and use it in GitHub Desktop.

Select an option

Save DoctorDerek/acd59884d2a41726208df5ea19f0212f to your computer and use it in GitHub Desktop.
Props Destructuring in a Function's Arguments
import React from "react"
const EmojifyComponent = ({ name, emoji }) => {
return (
<h1>
{emoji} {name} {emoji}
</h1>
)
}
export default EmojifyComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment