Pengenalan React (Komponen & JSX)
Menggunakan Props
Props dikirim ke komponen seperti HTML attributes. Nilai props dapat berupa string, number, boolean, array, object, atau bahkan function.[5]
Contoh berbagai tipe props:
String (tanpa kurung kurawal):
<Greeting name="Budi" />
Number, Boolean, Array, Object (dengan kurung kurawal):
<UserProfile
age={25}
isStudent={true}
courses={["React", "Node.js"]}
address={{ city: "Jakarta", country: "Indonesia" }}
/>