Amit Pandeytechnegrity.com·Feb 16, 2025Top 50+ ReactJS Interview Questions (2025)ReactJS, one of the most popular JavaScript libraries for building user interfaces, continues to evolve. As the demand for React developers grows, it’s essential to understand the key concepts, hooks, and advanced patterns that are used in React deve...React
USAMA HASSANstart-react.hashnode.dev·Feb 14, 2025Unveiling the use of useLayoutEffect in ReactReact provides various hooks to manage side effects, and while useEffect is commonly used, useLayoutEffect is a lesser-known but powerful tool. In this blog, we’ll explore its wonders and understand when and why to use it. What is useLayoutEffect? us...10 likes·29 readsReact
Deepak Modideepakmodi.hashnode.dev·Feb 12, 2025Building My Personal Portfolio Website with React and Tailwind CSSIntroduction Hello everyone! 🚀 I recently built and deployed my personal portfolio website, and I’m excited to share the journey with you. This portfolio is a reflection of my work, skills, and projects, crafted with modern web technologies like Rea...28 readsportfoliowebsite
Walid Ezzatwalidezzat.hashnode.dev·Feb 11, 2025Simplifying React: Key Concepts of Components, Props, and Code OptimizationReact is more than a trendy JavaScript library—it's a game-changing strategy for creating dynamic, high-performance, and maintainable user interfaces. By Meta (formerly Facebook) and backed by a community of developers at scale, React's component-ori...Frontend Development
Ákos Kőművesakoskm.com·Feb 11, 2025Common useEffect MistakesLearn how to avoid the most common mistakes when using useEffect. What are the issues associated with useEffect? Most issues I’ve had with using useEffect result from developers often mistaking it for a lifecycle function that runs when the component...80 readsReact
Shayan Danishreactquestions.hashnode.dev·Feb 10, 2025How can we make React useEffect avoiding execution on very first render?React useEffect always runs after the component mounts for very first time, irrespective of change in the state variable’s value. Let’s discuss, how can we avoid this. Before going through the solution below, I would suggest you to try to solve it by...React
Cyrille N'DAH23cyy.hashnode.dev·Feb 10, 2025Quoi de neuf avec React 19 ?Le monde du développement web est en perpétuelle évolution. React, acteur majeur n’est pas en reste dans cette progression. Sa nouvelle version introduit des fonctionnalités innovantes qui promettent de transformer la manière dont les développeurs co...React
Nishi Surtireactbynishi.hashnode.dev·Feb 9, 2025Let's React on useState( )I won’t lie it took 4 days to me understand useState hook thoroughly. So let’s dive deep into and learn from basics. Let’s go to our good old GOAT 🐐 friend Javascript export default function App() { let state = "No" state= " Damn No! "...29 readsReact
Jawad Vajeehvajeeh.hashnode.dev·Feb 7, 2025Unlocking Flexibility: Mastering Compound Components in ReactIn this blog, let’s learn an important React Design Pattern — Compound Components. We will understand what this pattern is all about by making a reusable Accordion Component. What are Compound Components? Compound Component is a powerful React Design...2 likesReact
John Schibellischibelli.dev·Feb 5, 2025Unleashing the Power of useState and useEffect in Modern ReactReact has fundamentally reshaped the landscape of front-end development, establishing a framework where declarative design and component-based architecture come together with the precision of a finely tuned instrument. With the introduction of Hooks ...React