© 2023 Hashnode
#react-js
In React, a side effect occurs when we do something that is beyond React.js in our React components, such as Web APIs like localStorage, these are not in the scope of React. Here's a summary for those with limited time: In React.js, side …
React is a JavaScript library used to make user interfaces in web and mobile apps. It was created by Facebook and is famous for its simplicity, flexibility, and speed. That's why it's a favourite choi…
When it comes to developing performant and efficient web applications, one of the key factors to consider is the number of DOM elements being created. The more elements you have, the slower your appli…
I asked myself this question some time ago cause I was unsure if to start react.js or not. I listened to motivational speakers and decided to "Just do it!".😅 Little did I know that they are "JavaScri…
Javascript turned out as a versatile choice for front-end and server-side development. The availability of resources, tools, libraries, and frameworks keeps them in demand globally. All JS frameworks …
React is a well-known JavaScript library for creating user interfaces (UIs). Facebook created it in 2011 and it has since become one of the most popular UI libraries for web development. React has sev…
Overview In this blog, I will be going to show you how to set up tailwindcss in react js + vite project. Follow the step-by-step instruction. Step 1: Create a React Js project with Vite js Create an e…
In this tutorial, you will learn how to create your own custom React hooks from scratch. React hooks are a powerful feature that allows you to reuse stateful logic across multiple components. We will …
In React, every change in the DOM is considered as a different state; for handling those state changes, there is a hook called useState. What is State A way for React to remember saved values from wit…
Introduction If you are a Web Developer then you must have come across various front-end libraries and frameworks among which most popular ones being React, Angular and Vue. These frameworks are in Ja…