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
We're a place where coders share, stay up-to-date and grow their careers.
Top comments (0)