Rohan Mathurrohanmathur.hashnode.dev·Sep 1, 2023useAutoScroll custom hook in ReactjsIntroduction You might have seen on streaming platforms such as youtube.com or twitch.com where there are live chat feeds, whenever a new chat comes, mainly two things happen:1. Auto-scrolls at the bottom2. If a user scrolls the feed on the top then ...Discuss·15 likes·32 readsReact
Umeh Emmanuelumeh22.hashnode.dev·Jul 17, 2023Explanation on react custom hookIn React, a custom hook is a JavaScript function that allows you to encapsulate logic and state management so that it can be reused across different components. Custom hooks follow a specific naming convention - their names should start with the word...DiscussReact
Anshul Bheniyeanshulbheniye.hashnode.dev·Jun 22, 2023Custom Hooks: Creating a Dynamic Page TitleCustom hooks are regular JavaScript functions that follow specific naming conventions. When you have certain logic or some chunk of code that is to be applied on every page or multiple pages, you could just create a custom hook. Define it once and ca...DiscussReactHooks
Deepanshu Goelblogs.deepanshuweb.in·Jun 16, 2023Supercharging Data Fetching in React with Custom Hooks and React-QuerySection 1: Setting up React Query React Query is a powerful library that simplifies data fetching and state management in React applications. It provides an elegant way to handle asynchronous operations and cache data for improved performance. Let's ...Discuss·1 like·46 readsReact
Gurjot SinghforThe Dev Folksthedevfolks.com·Jun 15, 2023Mastering React Hooks: Custom HooksReact Custom Hooks provide a powerful way to extract and reuse logic and stateful behavior from components, reducing the amount of boilerplate code in your application. Custom Hooks are simply JavaScript functions that follow specific naming conventi...Discuss·35 readsMastering React HooksReact
Adeesh Sharmaadeesh.hashnode.dev·May 30, 2023React Optimization through Custom HooksIn today's blog post, we're going to discuss an optimized implementation of a search feature in a React application using custom hooks. Our application fetches a list of tasks from an API and provides search functionality to filter through them. App ...Discuss·1 like·41 readsReactHooks
Eze Emmanuelemmanuel-eze.hashnode.dev·May 27, 2023Understanding the useFetch and useAxios Hook in ReactThe useFetch and useAxios hooks are custom hooks that simplify making HTTP requests in React components. It takes away the repetitive tasks involved in making API calls, handling loading states, and error handling thereby reducing the amount of code ...Discuss·5 likes·91 readscustom-hooks
Mohanraj Muthukumaranmohanrajmuthukumaran.hashnode.dev·May 25, 2023Unleashing the Power of React Hooks: Revolutionising Component State ManagementIn this blog, you'll learn all about React Hooks, including why they're a game-changer and how they work. Hooks In React v16.8, a game-changing feature called Hooks was introduced. It's an exciting addition that revolutionizes how we use React and si...Discuss·168 readsReact
Ahmed Mawiamaw1a.hashnode.dev·May 24, 2023Mastering React Custom HooksWhat are Custom Hooks? Hooks were added in React 16.8 to separate and reuse component logic, including state and side effects. Custom hooks are functions that allow you to reuse stateful logic between different React components. They are a way to ext...DiscussReact
Alain IglesiasProblog.aiherrera.com·May 20, 2023Crafting Time: Building an Analog Clock with React and Tailwind CSSIntroduction In the dynamic world of JavaScript frameworks, few hold their ground as solidly as React. Combine it with the elegance and simplicity of Tailwind CSS, and you've got a potent mix that is ideal for building user interfaces. In today's pos...Discuss·2 likes·357 readsReact