#iwritecode
Read more stories on Hashnode
Articles with this tag
Structure This is the basic template or barebone structure of HTML. Boilerplate <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> ...
What Is The Box Model? One incredibly important thing to understand about CSS is that everything is a rectangular box. Everything from text, to...
What Is NodeJS? NodeJS is not a programming language. This is a server environment(By this nature of NodeJS, JavaScript is a server-side programming...
The useEffect hook useEffect is a hook meant to be used when you want to perform side effects. Manually changing the DOM or fetching data are examples...
What is useState hook? useState is a react hook which is used to add a state variable to our components. It means that we can now declare state...
What are React Props? We use props in React to pass data from one component to another (from a parent component to a child component). Props are just...