Victoria LoforArticles by Victoria Lovictoria.hashnode.net·Sep 19, 2020FeaturedA Simple Guide to Build React Form with HooksWith React, there are many ways that you can build forms. The simplest way that I found is by React Hook Forms. In this article, I'll show you how to create and build a React form easily with React Hook Forms. Step 1: Build the Form React Hook Forms ...Tapas Adhikary and 5 others are discussing this6 people are discussing thisDiscuss·69 likes·1.3K readsReact
Fabien Schlegelfordevoreur2codedevoreur2code.hashnode.net·Nov 14, 2022Manage your state with the useState hook in ReactReact introduces hooks in version 16.8. Hooks allow us to create functional components with states and side effects. The useState is the simplest hook we can encounter in a React project. This method takes one parameter, the initial value of the stat...Discuss·61 likes·199 readsReact
Kunal KeshanforKunal Keshan's Blogkunalkeshan.hashnode.net·Jan 22, 2023FeaturedLearn How to use Context and Reducer Hooks in React.js by Creating a Global Snackbar.The Context (createContext and useContext) and the Reducer (useReducer) hooks in React.js might seem to be complicated and in the beginning, I felt that too. I had used them before, but never really understood fully how they worked, until I tried imp...Tara Hanson and 1 other are discussing this2 people are discussing thisDiscuss·43 likes·881 readsReact
Shina-kelani TaiwoforShina-kelani Taiwo's Blogkehlaniblog.hashnode.net·Apr 26, 2023An Introduction to Hooks in ReactJS: A Comprehensive Guide for BeginnersPrerequisites: Please note that before diving into this comprehensive guide, it is essential to have a basic understanding of React and its core concepts, such as components, props, and state management. Familiarity with JavaScript (ES6) syntax, incl...Discuss·1 likeReact
Yashodeep NimbekarforDev Journeyyashodeep.hashnode.net·Apr 25, 2023Understanding State Variables and the useState Hook in React for Dynamic UIsWhile learning React you might come across the terms such as state variables, useState hook and you had no idea about what state variables are in react and how it is used that you have landed on the right place. State management is a crucial part of ...Discuss·1 likehooks
Aksharmeet SinghforCode Climbaksharmeet.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
Waqas KhanforWaqas Khanwaqasblogs.hashnode.net·Apr 18, 2023Use Cases, Best Practices and Limitation of useState Hook in React.Intro React is a popular JavaScript library for building user interfaces. One of the key features of React is the ability to manage state using hooks. The useState hook is one of the most commonly used hooks in React. In this blog, we will explore ho...Discuss·1 like·28 readsuseState
Mannem Rohith forReact-Formrohithmannem.hashnode.net·Apr 13, 2023REACT-HOOK-FORM : A Guide With ExamplesForms are an essential part of how users interact with websites and web applications. Validating the user’s data passed through the form is a crucial responsibility for a developer. Building Forms using plain JSX maybe be a lot of work, therefore we ...Discuss·4 likes·47 readsReact
Sushant DeyforSushant's Blogssushantdey.hashnode.net·Apr 13, 2023useHooks in React.jsReact.js is a popular JavaScript library for building user interfaces, used by millions of developers worldwide. One of the most powerful features of React is its ability to use hooks, which are functions that allow you to use state and other React f...Discuss·1 like·29 readshooks
Clinton JoyforOpen Replay's Technical Blogopenreplay.hashnode.net·Apr 12, 2023Building A Custom Fetch Hook In ReactWe are continually looking for ways to improve your code as React developers. Another viable way is to create and use custom hooks. Custom hooks allow you to package and reuse functionality across your application. This makes it easy to maintain and ...Discuss·3 likes·31 readsReact
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
Smart ShockforSmartShocksmartshock.hashnode.net·Apr 6, 2023Working with React Hooks: A Practical Exercise for BeginnersReact Hooks are a powerful tool in the React developer's arsenal that can help improve the readability and maintainability of your code. Hooks allow you to reuse stateful logic across your components, which reduces code duplication and makes your cod...Discuss·1 like·44 reads25 React Exercises for Practical LearningState Management
Adeshina MichaelforAdeshina's blogmichado2019.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