How does React manage state?

State management is simply a way to engender communication and sharing of data across components. It creates a concrete data structure to represent your app’s State that you can read and write . Since React 16.8, every React component, whether functional or class, can have a state.13 Nis 2021

Read more

Component did Mount nedir?

componentDidMount () , bir component render edildikten hemen sonra çağrılır. Uzak bir uç noktadan veri yüklemeniz gerekiyorsa, bu ağ isteğini başlatmak için iyi bir yerdir. Bu fonksiyon, herhangi bir abonelik ayarlamak için iyi bir yerdir.

Read more