Hari kiran Kanteharikirankante.hashnode.dev·4 hours agouseRef Hook in React ExplainedIntroduction Welcome to a journey that's going to simplify your React development experience. If you're just starting out with React or feeling a bit puzzled by some of its concepts, you're in the right place. Today, we're demystifying one of the ess...Discuss·1 likeReact
ajeet achalachaltechnologies.hashnode.dev·13 hours agoReal-World React Project Walkthrough: Building a To-Do List AppReact is a powerful library for building user interfaces, and one of the best ways to learn it is by creating real-world projects. In this tutorial, we'll walk through the process of building a To-Do List application using React. By the end of this t...DiscussReact
Emran Hossenblog.emran.dev·14 hours agoHow to integrate google autocomplete to react applicationIntegrating third-party scripts to react applications is tricky. In this post, I will show you how easily you can integrate into a React application. Let's do it. I assume you have created an application and can work on it. We will create a hook to h...DiscussReactHooks
Engr Ohazulike Stanleyfrontendguru.online·Sep 30, 2023Enhancing React UI: A Simple Guide to Toggle Text VisibilityReact, known for its declarative and component-based nature, empowers developers to create dynamic and interactive user interfaces. In this tutorial, we'll explore how to implement a straightforward feature using a ToggleButton to hide and show text ...DiscussReact
Mikeydraken.hashnode.dev·Sep 30, 2023How to use React useState() in ReactGetting Hooked on useState() Hooks were introduced in React as a way to use state and other React features without writing classes. The useState() Hook is one of the most basic but powerful for adding state to functional components. React's useState ...DiscussuseState
Pritam Guhapritamguha.hashnode.dev·Sep 29, 2023React (Part - 1): How to Create a New Project in React.To create a new React project, we can use create-react-app, a popular tool that sets up a new React project with all the necessary configurations and dependencies. 💡 Make sure you have Node.js and npm installed on your computer. Node.js - Link Wh...DiscussReact
Ashok Kumar DharanikotaforAshok's Blogashok405.hashnode.dev·Sep 28, 2023Master React useStateWhen we hear about companies or developers globally adopting a new technology, it typically signals that this technology addresses challenges they've faced for quite some time. Currently, one of the most popular libraries catching developers' attenti...Discuss·11 likesReact
Scofield IdehenforLearnHub Bloglearnhubafrica.hashnode.dev·Sep 27, 2023A Step-by-Step Guide to Implementing React Router for Dynamic Single-Page ApplicationsSingle Page Applications (SPAs) are web apps that dynamically update a single page without requiring full page reloads. This results in a smooth user experience similar to a native mobile app. React is a popular JavaScript library for building user i...DiscussJavaScript
Mahad Ahmedblog.mahad.dev·Sep 27, 2023Setting up Next.JS and PocketBase for AuthenticationIf you are here, you most likely had a problem setting up PocketBase and Next.js 13 for authentication. Don't worry, I got you. You don't have to suffer the same pain I went through. This article is not intended as a Next.js tutorial for beginners if...DiscussNext.js
zhioua mohamedmohamedzhioua.hashnode.dev·Sep 27, 2023Optimizing UseEffect Hook for API Calls: Reduce Server Load and Rerenders with AbortControllerTable of Contents Introduction Problem with Example Code Solution with Example Code Benefits Conclusion Introduction The useEffect hook is one of the most powerful hooks in React. It allows us to perform side effects in functional components, ...Discuss·1 like·41 readsReactJSJavaScript