gunjan agarwalgunjanagarwal.hashnode.dev·Mar 9, 2024React Memory LeaksIntroduction: Memory leaks in React applications can be a silent performance killer, impacting user experience and overall application efficiency. In this blog post, we'll explore the causes behind memory leaks, discuss effective detection strategies...10 likes·65 readsReact
Diwakardiwakarkashyap.hashnode.dev·Aug 15, 2023createRef in React by Diwakar KashyapIn React, createRef is a method used to access the DOM nodes or React elements created in the render method. Refs provide a way to interact with the underlying DOM elements, and they can be useful in various scenarios, such as managing focus, trigger...diwakar kashyap
Diwakardiwakarkashyap.hashnode.dev·Aug 13, 2023convert HTMLstring to HTML in React (all advance methods)If you need an advanced way to convert an HTML string to actual rendered content in React, you might be looking at incorporating richer features, interactions, or handling components. Below are a few approaches that offer advanced rendering: Custom ...10 likesadvance react
Diwakardiwakarkashyap.hashnode.dev·Aug 12, 2023createFactory in React. 🏭 important function in ReactTo create a factory in React, you can use the createFactory function from the React library. The createFactory function takes a component class as its argument and returns a factory function. The factory function can then be used to create new instan...React
Diwakardiwakarkashyap.hashnode.dev·Aug 4, 2023What is Profiler in React ? <React.Profiler>The Profiler is a component in React that allows you to measure the performance of your components in terms of rendering times and frequency of renders. It's useful to identify potential performance bottlenecks in your application. Here's how to use ...10 likes·106 readsReact
ZordCoderzordcoder.hashnode.dev·May 29, 2023Discover React.js Advanced Techniques: Components and State HandlingIntroduction Welcome back to our four-part series on React.js! In Part 1 🔗 , we discussed why React.js is a powerful framework for building dynamic web applications. Now, in Part 2, we will delve deeper into the core concepts of React.js, including ...35 readsReact