Created
January 7, 2021 05:14
-
-
Save robzlabz/08e646cf7cd4d034c30e2b82df308f96 to your computer and use it in GitHub Desktop.
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
// Pemanggilan | |
<Card name="Agus"/> | |
const Card = (props) => { | |
return <h1>Hai, {props.name}</h1>; | |
}; | |
// atau bisa di pecah langsung menggunakan object desctructure | |
// jadi kita bisa langsung memanggil 'name' tanpa variable props | |
const Card = ({ name }) => { | |
return <h1>Hai, {name}</h1>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment