Posts by Muskan Garg
Author Biographical Info: Not available
A counter is nothing but a number with two buttons. One to increment its value, other to decrement. It is similar to the carts section in the shopping apps. In this tutorial, we wi.... Read More
In this tutorial, we will see how to toggle elements in React js. Toggling simply means to show and hide the element alternatively with each click of the button. The same concept i.... Read More
In this tutorial, we will learn how to create a Timer in React Js. It will have basic three buttons- start, stop and reset. We will use the setInterval function which repeats a giv.... Read More
We might build amazing React applications. It’s not worth it unless it’s available on the internet for others to see and use. To make our app accessible to others, we n.... Read More
Using lists and displaying them is required in almost every app. One of the applications being the menu. We can create lists in React in a similar way as it is created in Javascrip.... Read More
If there is a form in our app, it is necessary to validate it. We have to check if all the fields are correctly filled. This saves us from a lot of problems in the future and also .... Read More
Forms are an important part of React applications. They allow us to take information from the users and save them. They make our application really interactive. There are two ways .... Read More
On our web page, it’s often required to move to different web pages. We require some internal or external links throughout our page. Normally, the anchor tag or <a><.... Read More