#frontend-development
Read more stories on Hashnode
Articles with this tag
Domain Name The address of a website is a domain name similar to the address of a house. It is made of three different parts which include server...
React Developer's Day 6 · In React, a functional components can be written in two ways: //Regular Function function FunctionName(props) { return <div...
I managed to get rid of the scroll of the login page which shows some white space when the login page is scrolled down a little. Unfortunately, I now...
React Router I've been trying to implement the React Router since yesterday and my implementation has been anything but successful.😢This React...
A React component has a lifecycle that can be split up into four phases which include: Mounting Updating Unmounting Error Handling Lifecycle method...
State allows you to store one or more properties of a component. State can be used in a class component but not in a functional component. (However,...