Victoria Lovictoria.hashnode.net·May 7, 2021FeaturedReact Cheat Sheet for BeginnersIt might seem overwhelming for a beginner to learn the React framework. After all, it has gone through a lot of changes since it was first released around 2013. Here's a cheat sheet, not a full tutorial but a simple-to-understand and concise overview...Victor Ikechukwu and 10 others are discussing this11 people are discussing thisDiscuss·260 likes·3.5K readsReact
Atharva Bhuseatharvabhuse.hashnode.net·Jan 31, 2023FeaturedA Beginner guide to Mastering Re-rendering in ReactI had been working professionally with React for a year now, and while I have been able to build functional and feature-rich applications, I realized that I didn't have a solid understanding of how React's re-rendering process works. I think this is ...Garv Nanwani and 6 others are discussing this7 people are discussing thisDiscuss·180 likes·3.8K readsReact
Victoria Lovictoria.hashnode.net·Jun 22, 2021Curate Top Programming Blogs with React and HarperDBIn this article, let's learn about HarperDB, a very simple yet powerful database management solution that you can easily integrate with any app. To showcase some of its great features, let's build a React app together in this step-by-step tutorial. I...Tapas Adhikary and 10 others are discussing this11 people are discussing thisDiscuss·169 likes·1.3K readsRandom Projects to BuildReact
Michael Laroccamichaeljudelarocca.hashnode.net·Apr 25, 2023Using React useState Hook to Manage Object PropsThis week's article explores the powerful realm of the React useState hook! We create a player component, update specific object properties, and explain how to pass object props to child components! Introduction This article explores how to use th...Discuss·12 likes·62 readsReact
Vijeet Shahsourceopen.hashnode.net·Apr 25, 2023React Hooks: Hooks provide an easy way to add state and lifecycle methods to functional componentsReact is a popular and widely used JavaScript library for building user interfaces. One of the most powerful features of React is its ability to manage state and lifecycle methods within components. Traditionally, this has been achieved using class c...DiscussReactHooks
Aksharmeet Singhaksharmeet.hashnode.net·Apr 25, 2023Intersection Observer Hook in ReactEver felt the need to lazy-load images, implement infinite scrolling, and decide whether or not to perform an animation based on what the user will view? Intersection Observer API provides us with a way to do all this. To understand intersection obse...DiscussReact
Lalit Kumawatlalitkumawat1m.hashnode.net·Apr 23, 2023Diving into useEffect React HooksReact Hooks have revolutionized the way we manage state and lifecycle methods in functional components. One of the most useful and widely used hooks is useEffect, which allows us to perform side effects such as fetching data, subscribing to events, o...DiscussReact
Sanket Singhsanketsingh.hashnode.net·Apr 21, 2023Getting Started With React From A Bird's Eye ViewI am assuming that if you have landed on this blog then, you are an absolute beginner in React or if you already know to react then this blog will help you to brush up on your concepts quickly. Here we will not go in very in-depth on any react concep...DiscussReact
Disha Jaindisha.hashnode.net·Apr 20, 2023React HooksIntroduction to React Hooks- React Hooks are a set of functions that allow you to use state and other React features in functional components. Before the introduction of Hooks, React's stateful logic was handled mainly by class components. Hooks were...Discuss·1 likeReactHooks
Luca Del Puppopuppo92.hashnode.net·Apr 19, 2023React Query - Filter Your DataHey folks,Did you know that you can filter your data in react query? Noooo! Ok, it's time to learn it! To filter the data in your useQuery hook, you have to handle the select option. This option accepts a function that is used to filter the data.The ...Discuss·10 likes·83 readsReact QueryReact
Nkiruka Edith Onwugbuforedleychris.hashnode.net·Apr 18, 2023How to Implement Drag and Drop Functionality in React: An Easy GuideAre you looking for a way to add drag-and-drop functionality to your React application? If so, you are in luck. In this article, we'll go over how to implement drag-and-drop using the React library React-dnd. Let's take a moment to talk about what dr...Discuss·11 likes·37 readsReactHooks
Michael Laroccamichaeljudelarocca.hashnode.net·Apr 18, 2023Creating a True/False Toggle in React with useState Hook for BeginnersIn this article, we learn how to create a true/false toggle using the React useState hook, and then we create a component that addresses the age-old controversy of whether Han Solo shot first or not! Introduction In this article, you'll learn how ...Discuss·2 likesReact
Shirene Boydshireneboyd.hashnode.net·Apr 18, 2023"Battle of the Hooks: A Comparison of useState() and useReducer() in React"When it comes to building complex and scalable React applications, it's crucial to understand how to manage state. React offers two hooks, useState() and useReducer(), to manage the state in functional components. While useState() is more popular and...Discuss·39 readsReactHooks