React: Day 27

It is the 27th day and I learned a lot today. I learned about function components and after that I learned about the state hook and how to use it. I have to say, the people who came up these tools are amazing.
Then I learned how to set state using different code snippets
1️⃣ const handleEvent= (event) => {
const newEvent = event.target.value;
setEvent(newEvent)
}2️⃣ const…