importReact,{useState}from"react";functionCounter(){const[counter,handleClick]=useState(0);return(<div><buttononClick={()=>(handleClick(counter+1))}>Increment counter</button>{/* <button onClick={this.handleClick}>Increment counter</button> */}<div>Counter value is {counter}</div></div>);}exportdefaultCounter
Top comments (0)
Subscribe
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)