My Logo
UseEffect
001

Multiple useEffect Hook use cases.

In this project, multiple useEffect Hooks are used to change the text as well as the document title.

Give it a try by typing in a name and you'll see it at the top.


0

My name is and I am 0 years old.
UseEffect

About this project

  • This project allows you to update the document title when you update the input.
  • With useEffect, you can show and hide the component.
  • To show and hide the component, I used a useState to show/hide the child component.
  • Concepts used

  • useEffect on Children
  • useEffect Hook
  • Document Interaction
  • useState
  • Conditional Rendering