Created
December 4, 2020 23:28
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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