Yashaswi Sahuyashaswisahu.hashnode.dev·Nov 16, 2024GSAP With ReactIntroduction to GSAP GreenSock Animation Platform (GSAP) is a powerful JavaScript library for creating smooth, high-performance animations. When combined with React, it enables developers to create seamless, professional-grade animations. This blog w...DiscussGSAP
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 18, 2024React JS - Custom HooksCustom Hooks 1. What are Custom Hooks? Custom hooks are essentially JavaScript functions that use other React hooks (like useState, useEffect, useContext, etc.) to encapsulate reusable logic. They allow you to extract component logic into reusable fu...Discuss·4 likesReact-MasteryReact
Omkar Kastureomkarkasture.hashnode.dev·Oct 14, 2024Custom Hooks in React and Currency ConvertorIn this blog, we'll explore key concepts for building your own React project, Currency Converter. Along the way, we'll learn how to create custom hooks to enhance your project. Let’s get started. Code is available on GitHub: https://github.com/omkar-...DiscussReact-Quick GuidesReact
Aaksaaks.hashnode.dev·Oct 12, 2024Custom HooksIn React, when we notice lines of code repeating, it's often a sign that we should refactor them into a function. Similarly, React's standard library doesn't cover every use case, so we can create our own functions, just like we can create our own cu...Discuss·1 likecustom-hooks
Yusuf Uysalyusufuysal.hashnode.dev·Sep 28, 2024React Interview Questions (Part 2): Component Lifecycle & HooksWhat are the differences between componentDidMount, componentDidUpdate, and componentWillUnmount in class components? componentDidMount, componentDidUpdate, and componentWillUnmount are lifecycle methods in React class components that are invoked at ...DiscussReact Interview QuestionsReact
Piyush kantforByte by Byte Learningbytebybytelearning.hashnode.dev·Sep 8, 2024Crafting Elegant Code with Custom React HooksIntroduction React hooks revolutionized the way developers build modern web applications, offering a powerful tool to manage state, side effects, and other reusable logic inside functional components. Among these hooks, custom React hooks provide an ...Discusscustom hooks in react
Nehal JainforTips for JavaScripttipsforjavascript.hashnode.dev·Sep 7, 2024Crafting Your Own HTML: A Guide to Custom ElementsLet's embark on an exciting journey to create our very first custom HTML element! 🚀 Introduction: What the heck is Custom Element? Custom elements are like building blocks for the web, allowing you to create unique and powerful components that go be...Discuss·76 readsHTML
akash javaliblog.akashjavali.com·Aug 30, 2024Creating a Custom Hook in React: When and How to Build OneReact hooks have revolutionized the way developers build functional components, offering a way to leverage state and lifecycle features without the need for class components. While React provides several built-in hooks like useState, useEffect, and u...Discuss·45 readsReact
Kpeale Legbarakpealecodes.hashnode.dev·Aug 25, 2024How to Create a Custom Form Validation Hook in React: A Step-by-Step GuideIntroduction Form validation is a common requirement in web applications, and while there are many libraries available to handle it, creating your own custom solution in React gives you full control and a deeper understanding of how it works. In this...Discuss·10 likesReact
Shiwanshu Shubhamshiwanshudev.hashnode.dev·Aug 9, 2024Simple Guide to Creating Custom HooksCustom hooks are reusable pieces of logic we create for specific functions. They are generally made up of other hooks used inside them. They are named with "use" followed by the functionality of the hook. For example, useFetchData. According to Rea...Discusscustom-hooks