State
State statik veya değişken component değerleridir.
//src/app/components/Cardlar.js
constructor(props) {
super(props);
this.state = {
card_baslik : "Merhaba State"
}
}
.....
{this.state.card_baslik}
......
(imaj) 3-14.satır ve 22.satır
Şablon üzerinde bir imaj.
Last updated
Was this helpful?