NA +91-8727899942 thecoderjob@gmail.com

CHAPTER - 14

Show & Hide experiment

  • Example :

 

function ShowHide() {

  const [show,setShow]=useState(true)

  return (

    <div className="App">

     {

       show?<h1>Hello World !</h1>:null

     }

     <button onClick={()=>setShow(false)} >Hide</button>

     <button onClick={()=>setShow(true)} >Show</button>

    </div>

  );

}

 

Chapter 13

Input box experiment

Previous chapter

Chapter 15

Form handle

Next chapter

Get In Touch

NA

thecoderjob@gmail.com

+91-8727899942

Popular Links

© www.thecoderjob.com. All Rights Reserved.               Designed by HTML Codex