การสร้างคอมโพเนนต์ลูกใน React
คุณสามารถส่งไม่เพียงแค่สตริงไปยังแอตทริบิวต์ของแท็กคอมโพเนนต์ แต่ยังสามารถแทรกตัวแปรและค่าคงที่ได้:
function App() {
const name = 'product';
const cost = '100';
return <div>
<Product name={name} cost={cost} />
</div>;
}
มาสร้างผลิตภัณฑ์หลายรายการพร้อมกัน:
function App() {
const name1 = 'product1';
const cost1 = '100';
const name2 = 'product2';
const cost2 = '100';
const name3 = 'product3';
const cost3 = '100';
return <div>
<Product name={name1} cost={cost1} />
<Product name={name2} cost={cost2} />
<Product name={name3} cost={cost3} />
</div>;
}
ลองใช้สิ่งที่เรียนรู้กับคอมโพเนนต์ใด ๆ ของคุณ