Chibuike UkanduforCodexJay's Blogbuikem.hashnode.net·Jan 10, 2023How to build a Github Portfolio using Github API, React JS and TailwindCSSReact JS has made creating user interfaces easier and faster, so I built a GitHub portfolio web page (a second-semester project for Frontend devs by AltSchool ) using React JS. In this article, we'll learn how to build a GitHub portfolio website feat...Discuss·35 likes·270 readsReact
Amirah Nasihahfor<SehaNote />amirahnasihah.hashnode.net·Aug 25, 2022React Tutorial Beginner - `useState` and `useEffect` with Example CodeIn this tutorial, I'm going to give you a step-by-step guide on understanding the main concepts of React which introduce the concept of state and lifecycle in a React component. State is Memory of a Component Let's have a brief on what State is. As a...Discuss·24 likes·149 readsReact
Franklin OhaegbulamforFranklin Ohaegbulamfrankiefab.hashnode.net·Aug 20, 2022How To Build a Star Rating Using useState HookHave you ever wondered how star ratings commonly seen on e-commerce websites or app stores are created? Thousands of reviews are received every day, and many products and services across the web aren't complete without a star rating for receiving cu...Victor Eke and 3 others are discussing this4 people are discussing thisDiscuss·23 likes·469 readsTutorialsReact
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
Prachi Sahuforprachiblogs.hashnode.net·Apr 21, 2023Batching in ReactWhat do you think batch means in literal terms? It means to combine, mix or process in a group. Batching is an essential concept in React. Now in terms of React, what do we mean by batching? Batching Batching is the process of grouping multiple state...Anand Baraik and 2 others are discussing this3 people are discussing thisDiscuss·9 likes·87 readsReact
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
Yusuf CinarforMy Journey to Web3 Devyccodes.hashnode.net·Apr 16, 2023React FormsReact ile bir küçük bir form login form yapalım: Öncelikle React ve useState import edelim. import React, {useState} from "react"; App'imizde bir heading (Form başlığı), bir input (isim girmek için) ve bir tane de buton olacak( veriyi göndermek için...DiscussReact
Ismoiljonfordoubleh's blogdoubleh.hashnode.net·Apr 6, 2023Tips and Tricks for Using the useState Hook in React.1. Initializing State with Expensive Computations One mind-blowing trick useState is initializing state with expensive computations. This technique can improve your app's performance by optimizing the initial render time. Let's say you have a compone...Discuss·27 readsReact
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
Smart ShockforSmartShocksmartshock.hashnode.net·Apr 4, 2023Handling User Input with EventsIntroduction In any web application, handling user input is a crucial task. React provides an easy way to handle user input through events. In this article, we will explore how to handle user input with events in React using a simple example. Code: L...Discuss25 React Exercises for Practical LearningReact
Smart ShockforSmartShocksmartshock.hashnode.net·Apr 4, 2023Using State to Manage DataIn React, state is used to manage and store data that can change over time. State is an object that can be updated using the setState() method. When the state of a component changes, React will automatically update the component to reflect the new st...Discuss·1 like25 React Exercises for Practical LearningReact
Bhaveek Jainforbhaveek.hashnode.net·Apr 3, 2023Building Counter 2.0 - React Fundamentals #2In our previous blog, we introduced the concept of React state and explored its importance in building dynamic web applications. Now, we'll take our understanding of state to the next level and incorporate it into our Counter app, creating an upgrade...Discuss·1 like·34 readsReact
Copycat FigmaforCopycat Figmacopycatfigma.hashnode.net·Mar 27, 2023The Ultimate Guide to Using useState in React: React Hooks useState ExplainedManaging state is a crucial part of building a React application. In the past, the only way to use state in a React component was by using a class component. However, with the introduction of React Hooks, it's now possible to use state in functional ...DiscussuseState