Aryan Jagdaleaaryansj.hashnode.dev·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·31 readsManaging State with reactReact
RAVI BHARTIravics.hashnode.dev·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·118 readsReact
Hamza Aliblog.hamzaa.dev·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·134 readshooks
Raj Kishanrajkishan.hashnode.dev·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·236 readsReact
Dennis San Josesanjosedennis.hashnode.dev·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·79 readsReact
Dennis San Josesanjosedennis.hashnode.dev·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·135 readsReact
Vishnu Aithalvishnu-aithal.hashnode.dev·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·53 readsFirebase
Anjalianjalideshwani.hashnode.dev·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·44 readsReact
Ankit Kumainankitkumain.hashnode.dev·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·153 readsReact
Nikhilnikhilbelide.hashnode.dev·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.6K readsReact