Understanding React Components - What are States - What are Props - State vs. PropsApr 18, 2023·1 min read
Diving into more React HooksWhat are Side-Effects? Before we get into the hooks we need to recall what are Side-Effects. Suppose you have a pure function that takes two integers as an argument and returns the sum of those two numbers and the function also has console.log well. ...Apr 23, 2023·5 min read
How to add React to your websiteCreating a React app is a simple process that can be completed in just a few steps. In this blog, we will go through the process of creating a new React app from scratch using the Create React App (CRA) tool. Here are the steps to follow: Install No...Feb 14, 2023·2 min read
What is routing in ReactJs?While I was at my initial stage of learning React I came across a word very often- "Routing". Now, what exactly is routing in ReactJs? Routing in React is the process of mapping URLs to specific components within your application, allowing you to cre...Feb 14, 2023·2 min read
Why use React instead of Vanilla Js?The first question that comes to our mind is why should we care about using React if we can use plain JavaScript. Though Plain Javascript is also one of the most popular programming languages amongst the vast community of developers, it lacks scalabl...Feb 12, 2023·2 min read