GKGideon Kirimanjaroinblog.kirimanjaro.com·Feb 10, 2023 · 2 min readuseReducer in ReactState Management In REACT state management is a vital part of the general architecture of a REACT app. The first and most powerful state management hook is the useState() hook. This is a very powerful hook and is ideal for tracking a state that does ...00
GKGideon Kirimanjaroinblog.kirimanjaro.com·Feb 10, 2023 · 3 min readuseEffect in ReactThe useEffect() hook is part of functional programming and the word ‘effect’ is used to describe the “side effect” of a REACT app. Common side effects include: API requests. Using unpredictable timing functions. e.g setTimeOut or setInterval. Dire...00