Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save DoctorDerek/45bbd012ef3198f54affb2fb24006407 to your computer and use it in GitHub Desktop.
Props Destructuring in a Function Component without destructuring https://medium.com/p/3984453e484d/
import React from "react"
const EmojifyComponent = (props) => {
return (
<h1>
{props.emoji} {props.name} {props.emoji}
</h1>
)
}
export default EmojifyComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment