FrontBackGeek

What is useEffect Hook? How to Fetch data from API using useEffect

FrontBackGeek 2 years ago

useEffect hook is used to manage side effects that are not related to component rendering. Mostly useEffect hook is used for managing console logs, animations, loading data, etc. Let’s understand…

FrontBackGeek

What is useReducer Hook? What is the important difference between useState and useReducer Hooks? | React JS 18, useReducer vs useState, explain in detail

FrontBackGeek 2 years ago

useReudcer hook takes the current state and returns a new state, it is used for state management. With useReducer, we can directly call the function inside the initialization and also…

FrontBackGeek

What is the useState() hooks in React JS | How to use useState() hook in React JS

FrontBackGeek 2 years ago

Hooks are very important in react js and the most common hook is the useState Hook. In this blog, we will look into the functionality of this hook and we…