© 2023 Hashnode
#react
What is React and why choose React over other web frameworks ? React is an open-source JavaScript library for building user interfaces (UIs). It was developed by Facebook and is widely used to create …
In recent years, the open source movement has gained significant momentum, transforming the way software and technological advancements are developed. With the advent of platforms like GitHub, GitLab,…
In modern web development, performance optimization is crucial to provide a smooth user experience. One of the ways to achieve this is by code-splitting, which allows us to load only the necessary cod…
In previous article we have discussed what is react state management and how it is done in react using hooks like useState and useReducer, if you haven't read that post please read it from here and ma…
Introduction: TypeScript is just the addition of types to JavaScript. It is said to be a syntactic superset of JS. JavaScript is a loosely typed language, which means you do not specify the data type.…
creating a Responsive Navbar in React: A Step-by-Step Guide Are you looking to add a responsive navbar to your React application? If so, you're in the right place! In this blog, we'll guide you through the process of building a responsive n…
Solving coding challenges on the LeetCode website is a great way to improve your developer skills. But an even better way to improve your skills is to develop your own LeetCode website. We just publis…
In React, components have a lifecycle that consists of different phases. Each phase has a set of lifecycle methods that are called at specific points in the component's lifecycle. These methods allow …
Introduction In this context, a "beginner" is someone who already has some familiarity with HTML, CSS, and Vanilla Js, simply because ReactJS is an open-source Javascript framework and library. Theref…
Vol 2: useReducer Introduction useReducer hook as its name implies is an alternative hook to useState hook which helps to reduce state in a way, though useReducer has the benefit of dealing with compl…