Faheem KhanforFaheem's Blogfaheemkhan97.hashnode.net·May 18, 2022React: Master useEffect Hook.Introduction useEffect() is one of the most used hooks in React applications. This makes it a favorite topic for interviewers to talk about it in Frontend/React interviews. Therefore having a good understanding of useEffect is crucial. You might be...Tapas Adhikary and 3 others are discussing this4 people are discussing thisDiscuss·103 likes·4.9K readsTHW Web AppsWell explained, understanding useEffect will 10x your spend as a React developer but can be tricky to understand. You just did justice to it is this article. Thanks for sharing 10
Shad MirzaforCoding Simplified With Shadiamshadmirza.hashnode.net·Nov 10, 2020React Native Animation using Hooks: Tinder CardsHello everyone, We are back with some React Native Animation, and this time we are building Tinder Cards using Hooks. We will build a deck of cards featuring cute animals where you can swipe left or right. And finally, we will decouple the whole logi...Luís Gustavo and 1 other are discussing this2 people are discussing thisDiscuss·92 likes·4.0K readsReact Native AnimationReact Native
Poornima AlugubellyforPoornima Alugubelly's Blogpoornima-alugubelly.hashnode.net·May 14, 2022How to implement Memoization in React and vanilla JS to optimize your web appBefore we get into how to implement memorization let's first see what it is and why we even need it. What is Memoization? In simple words, Memoization is an optimization technique where we ask our computer to remember in its cache what the output of...Bharati Subramanian and 6 others are discussing this7 people are discussing thisDiscuss·86 likes·1.6K readsReact
Aaryanforaaryansj.hashnode.net·Sep 6, 2022State-dependent response to inputHow declarative UI compares to imperative Designing user interface interactions probably includes thinking about how the UI changes based on user actions. An example of an answer form would be: When you type something into a form, the “Submit” button...Discuss·28 readsManaging State with reactReact
RAVI BHARTIforRavibhartiravics.hashnode.net·Aug 21, 2022Top 10 Awesome React Hooks LibrariesReact Hooks have been life-changing for React developers. They provide a simple and elegant way to write code that is more readable and maintainable. There are only a few handfuls of hooks provided by React. Depending on our use case, we create custo...Discuss·1 like·85 readsReact
Hamza AliforHat52hat52.hashnode.net·Aug 8, 2022useMemo Hook React.jsPerformance is an important aspect in programming, especially in large scale application. The useMemo hook is one tool that can be used to improve the performance of react app. In this tutorial I will try to demonstrate how and when to use useMemo ho...Discuss·1 like·101 readshooks
Raj KishanforRaj Kishan's blograjkishan.hashnode.net·Aug 4, 2022useEffect Hook in ReactHello everyone.👋 The react hook has a lot of expressions. By writing so little, you can accomplish so much. But starting them is a bit of a challenge, particularly useEffect( ). Learn how to utilise the useEffect( ) hook in this article. Why use use...Discuss·61 readsReact
Dennis San JoseforDennis' Blogsanjosedennis.hashnode.net·Jul 12, 2022React: Introduction to useReducer hookIn this article, I'm assuming that you have at least some knowledge of using React and want to explore React Hooks. useReducer This hook is used to handle complex state in our application. Inspired by redux state management pattern (If you're not fam...Discuss·4 likes·68 readsReact
Dennis San JoseforDennis' Blogsanjosedennis.hashnode.net·Jul 4, 2022React: Introduction to useEffect hookIn this article, I'm assuming that you have at least some knowledge of using React and want to explore React Hooks. Introduction useEffect is one of the known hooks in React application. Some call it the “Effect Hook”. This hook allows you to perfo...Discuss·1 like·100 readsReact
Vishnu AithalforVishnu Aithal's Blogvishnu-aithal.hashnode.net·Jun 10, 2022Read Data from Firestore and React custom hooks for realtime data.Prequisites React Custom Hooks Firebase Initialization Contents Firestore Read Methods reference and doc() getDoc() and snapShot collection(), query() and getDocs() onSnapshot and realtime data subscription React custom hooks for realtime da...Discuss·26 readsFirebase
AnjaliforAnjali's Insightsanjalideshwani.hashnode.net·Jun 10, 2022React useRef hook and its use casesLets start with brief introduction of the hooks, React hooks are special built in functions which let us store data, add interactivity and also help in performing side-effects. Below are some of the most common hooks used in React for special purpose...Discuss·1 like·30 readsReact
Ankit KumainforKumain's blogankitkumain.hashnode.net·Jun 8, 2022An easy guide to understanding react useRef hookPrerequisites Familiarity with react Note - You do not need to be an expert in react but you must have seen some react code before reading this article. Introduction In this blog, we will cover the useRef hook which is commonly used to create a mu...Discuss·3 likes·115 readsReact
NikhilforNikhil's Blognikhilbelide.hashnode.net·May 19, 2022useRef and forwardRef in React.What Is useRef? useRef is a react hook that is basically used to store the reference of something like let's say a DOM element. It takes a single argument as initial value and returns an object with a single property called current. This current hold...Ayodele Samuel Adebayo and 1 other are discussing this2 people are discussing thisDiscuss·28 likes·2.4K readsReact