An experienced Frontend web developer passionate about creating visually appealing and user-friendly websites. With more than a year of experience in the industry, and proficiency in HTML, CSS, JavaScript, React, and other modern frontend frameworks, responsive design, and cross-browser compatibility. Currently working as a frontend web developer at Cloudyfox Technology, responsible for designing, implementing, and maintaining the user interface for various web projects.
In the previous article, we discussed the concepts of the react-router v6. In this article, we will discuss about the nested route and dynamic route in react. We will create…
We will be discussing about the basics of react router v6 and a tutorial on how to create a react app and routing through pages using react router dom.
Form validation is a method to ensure that the data submitted by user meets specific criteria. The common practice of validating a form in react.js is to create a separate state for every input field and then creating a validation function and error condition for every one of them. It is a good method for the form with less validation conditions.
We can use the features of class component in the functional component by using the react hooks. useState and useEffect are features of the functional components used for State Management and managing the side effects in the components respectively.
What is Server Side Rendering (SSR) ? Server side rendering(SSR) is the process of loading your website’s JavaScript on your own server instead of rendering it in client side(browsers). This allows…