Apurv Khare
Apurv's Tech Blog

Apurv's Tech Blog

Follow
homebadgesnewsletter
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

Redux demystified - 2: combineReducers

Jul 10, 20227 min read

Understand how redux deals with multiple reducers and the implementation of combineReducers method · This post is a continuation of Redux demystified -...

Redux demystified - 2: combineReducers

Redux demystified: understand its implementation

Jul 3, 20227 min read

Understand how exactly redux works, along with the implementation of the createStore method · If you are a React dev, you may have used or heard of...

Redux demystified: understand its implementation

React.useEffect: using it effectively

Mar 20, 20214 min read

This is a beginner-friendly post explaining the use of useEffect hook in React. There are three phases of a React component, Mounting: When the...

React.useEffect: using it effectively

React Hooks: What problems do they solve?

Feb 28, 20214 min read

Generally when a React Developer is asked, 'what are the advantages of hooks or why hooks were introduced?', the most common answer would be: "So that...

React Hooks: What problems do they solve?

React Optimization: React.memo, useCallback, useMemo

Jan 31, 20216 min read

Why do we need to optimize React components? It is needed because of how React Reconciliation updates the virtual DOM. React uses BFS algorithm to...

React Optimization: React.memo, useCallback, useMemo

Make toggle/collapsable content

Jan 10, 20214 min read

Recently I was building a React Web App for my side project and wanted a toggle/collapsable component. So like a caveman I planned to add an "onclick"...

Make toggle/collapsable content