Bhanu Teja Pachipulusupbteja1998.hashnode.net·Nov 10, 2020The Lifecycle of React Hooks ComponentIn this article, we will see the order in which different useEffect callbacks and cleanups happen. We will also see how it differs when the app mounts, unmounts, updates. This image is taken from https://github.com/donavon/hook-flow. I took the ex...Tapas Adhikary and 3 others are discussing this4 people are discussing thisDiscuss·133 likes·8.9K readsMy Review of Kent C. Dodds's EpicReact.DevReact
Victoria Lovictoria.hashnode.net·Jul 23, 2020Build a Custom Autocomplete Search Bar with React HooksHello friends! I am back with another technical article for today's 6th article of the #2Articles1Week Challenge Series by Hashnode! First, I apologize for the absurdly long title. I just need to include all the juice in this article... I hope all o...Bolaji Ayodeji and 5 others are discussing this6 people are discussing thisDiscuss·61 likes·13.3K reads#2Articles1Week ChallengeReact Native
Kevin Joselearnwithkev.hashnode.net·Mar 24, 2020Building a reusable notification system with react hooks and context APIThe problem While building a re-usable component we tend to forget what are the essential features the component itself should have. Let me explain, consider a notification/alert/toast popup component, as a component it should have the ability to re...Discuss·39 likes·142 readsreact
Tushar Jagitusharjagi.hashnode.net·Apr 16, 2023React 18 new features1) Concurrent React and suspense feature Concurrent React is a set of features and improvements introduced in React 18 to improve the performance and user experience of React applications. Concurrent React allows React to handle multiple tasks simult...DiscussReact
Bhaskar Kumarbhaskar133.hashnode.net·Apr 16, 2023Table of contentsReact hooks useState hook useEffect hook useContext hook useRef hook useReducer hook useCallback hook React hooks React Hooks is a feature introduced in React 16.8 that allows you to use state and other React features without writing a class ...Discussreact hooks
saurabh kumarforSaurabh Sarinmernstackdevl.hashnode.net·Apr 11, 2023React HOOK introduction.Hooks are new feature addition in React VERSION 16.8 which allows you to use React features without having to write a class. ex: State of a component Previously you could only use state with class components, but now we can use state and other react ...DiscussReact
Mohd Nisab Alamnisabmohd.hashnode.net·Apr 9, 2023useImperativeHandle hook in ReactCertainly! useImperativeHandle is a hook that allows you to expose a custom interface from a child component to its parent component. It's often used in conjunction with forwardRef to create reusable components that allow the parent to control some o...Discuss·38 readsReact
Adeshina Michaelmichado2019.hashnode.net·Apr 5, 2023Understanding react hooksVol 1. useState Introduction useState is one of the React hooks. And its use can not be over-emphasized. It comes in handy when building a React app. In React there is what we call the state of an application. This is quite different from when dealin...Discuss·2 likesReact
Bhaveek Jainbhaveek.hashnode.net·Apr 1, 2023Let's learn useState! - React Fundamentals #1Welcome to my blog where we explore the world of React hooks! Today, we'll be taking a closer look at the useState hook - a fundamental hook that every React developer should be familiar with. useState is a built-in hook in React that allows us to ad...Discuss·68 readsReact
Himanshu Chauhanhimanshuchauhan.hashnode.net·Mar 30, 2023Optimizing performance in React appsHere I want to share how can we make a more optimize React js web app. Here are some methods to make your code clean and make it faster. Improving the code is a very important process you need good knowledge about that technology to improve that code...Discuss·1 like·26 readsReact
Jessica Josephforjessicasake.hashnode.net·Mar 29, 2023Mastering Reusability in React: A Guide to Crafting Custom Hooks for Stateful LogicIntroduction Are you tired of writing the same code over and over again in your React applications? Have you ever wanted to reuse some of your existing code across different components, without having to repeat yourself? Great, with custom hooks, yo...Juliet Ofoegbu and 3 others are discussing this4 people are discussing thisDiscuss·31 likes·296 readsReact
Emmanuel Elekwachiijkmnffs.hashnode.net·Mar 25, 2023React hooks: An in-depth look at useState and useEffectReact hooks are simple JavaScript functions that developers can use to isolate reusable parts of code from a functional component. They can be stateful and can manage side effects, such as the ones we're about to look at now. At the end of this artic...Discuss·41 readsReact
Yazdunyazdun.hashnode.net·Mar 16, 2023Creating Custom React Hooks: A Beginner's GuideIn this tutorial, you will learn how to create your own custom React hooks from scratch. React hooks are a powerful feature that allows you to reuse stateful logic across multiple components. We will start by exploring the basics of hooks and their b...Discuss·27 readsReact