Avneesh Agarwalavneesh0612.hashnode.net·Jun 16, 2022How not to write clean code in React? 🧹Introduction Wassup everyone, long time no see. Today we will see a few ways to not clean code in React, let's jump right into it! 10 ways to not write clean code Not use a linter Who needs a linter to keep good code styles, and keep the code clean ...Gwenaël Magnenat and 2 others are discussing this3 people are discussing thisDiscuss·61 likes·1.5K readsReact
Sébastien Lorbersebastienlorber.hashnode.net·Apr 6, 2023This Week In React #140: React Labs, Storybook, Astro, refs, Ark, Impala, Docusaurus, Expo-Blur, WebView, AsyncContext...Hi everyone! I'm just back from vacations: we catch up with 2 weeks of news! A new React Labs post now presents React Forget as a reactivity compiler. Server Components never cease to surprise. Many related innovations are not yet highlighted outside...Discuss·50 likes·34 readsThis Week In Reactreact js
Vrinda Bhatiavrindabhatia.hashnode.net·Oct 22, 2022Build your own Custom Hook in React.JS 🚀React Hooks gives you ability to build your own custom Hooks where you can separately keep the components logic and reuse the function in other components as well. As the name signifies Custom Hooks allows you to build the hook according to your use-...Discuss·27 likes·226 readsreact hooks
Shina-kelani Taiwokehlaniblog.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
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
Rocky Esselrockyessel.hashnode.net·Apr 24, 2023How to create a React.js(TypeScript) Reusable Custom Button Component with TailwindCSS.So before we start, I would like to show you what the code for the reusable custom button is going to look like. import React from 'react'; type ButtonType = 'button' | 'submit' | 'reset' | undefined; interface Props { children: React.ReactNode; ...DiscussTypeScript
ajeet achalachaltechnologies.hashnode.net·Apr 22, 2023Building a Real-Time Chat Application with React and FirebaseIn today's fast-paced digital world, real-time chat applications have become an essential part of our daily lives. From messaging friends and family to collaborating with colleagues, chat applications have made communication faster and more convenien...DiscussReact
Himanshu Chauhanhimanshuchauhan.hashnode.net·Apr 18, 2023Learn ReactJS Basics: A Guide for Beginners"Welcome to my beginner's guide to ReactJS! In this series of articles, we'll explore the fundamental concepts of this powerful frontend library, from the basics to advanced optimization techniques. If you're new to ReactJS, this guide is the perfect...Discussreact js
Abdul Basit Khan (Abdul Basit)abdulbasitpersonalblog.hashnode.net·Apr 14, 2023Introduction Of React.jsReact.js has become one of the most popular and widely-used JavaScript libraries. With its powerful features and flexibility, React.js makes web applications more dynamic, interactive, and efficient. In this blog post, we will explore just an introdu...DiscussReact
Abdul Basit Khan (Abdul Basit)forAbdul Basit blogabdulbasitblog.hashnode.net·Apr 14, 2023Introduction Of React.jsReact.js has become one of the most popular and widely-used JavaScript libraries. With its powerful features and flexibility, React.js makes web applications more dynamic, interactive, and efficient. In this blog post, we will explore just an introdu...DiscussReact
Junaidmohd-junaid.hashnode.net·Apr 12, 2023React is all about componentsReact is a popular JavaScript library that is used to build dynamic and interactive user interfaces for web applications. One of the key features of React is its component-based architecture, which allows developers to build complex UIs by breaking t...DiscussReact
Sébastien Lorbersebastienlorber.hashnode.net·Apr 6, 2023This Week In React #140: React Labs, Storybook, Astro, refs, Ark, Impala, Docusaurus, Expo-Blur, WebView, AsyncContext...Hi everyone! I'm just back from vacations: we catch up with 2 weeks of news! A new React Labs post now presents React Forget as a reactivity compiler. Server Components never cease to surprise. Many related innovations are not yet highlighted outside...Discuss·50 likes·34 readsThis Week In Reactreact js
ajeet achalachaltechnologies.hashnode.net·Apr 6, 2023Integrating APIs with ReactJS: Best Practices"API integration is the key to unlocking the full potential of ReactJS. By seamlessly connecting your application to external data sources, you can build dynamic, data-driven web applications that deliver exceptional user experiences." As more and m...Discuss·3 likes·36 readsReactGreat article! These best practices for integrating APIs with ReactJS will definitely come in handy for my next project. 5