Is React hooks better than Redux?

Redux and React Hooks should be seen as complements and also as different things . While with the new React Hooks additions, useContext and useReducer, you can manage the global state, in projects with larger complexity you can rely on Redux to help you manage the application data.

Read more

React redux ne işe yarar?

Redux , literatürde Application State Management yani Uygulama Durum Yönetici olarak geçmektedir. React uygulamaları geliştirirken, state bileşenleri üzerinden geliştirme yapılmaktadır. Redux denilen yapı ise bu state bileşenlerini yönetmemizi sağlayan kütüphanedir.

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