You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the feedback! Could you specify what kind of description would have made exercises easier? Doesn't for example this example answer the question "how to work with a components properties from within the event handler":
constApp=(props)=>{const[counter,setCounter]=useState(0)return(<div><div>{counter}</div><buttononClick={()=>setCounter(counter+1)}>
plus
</button><buttononClick={()=>setCounter(0)}>
zero
</button></div>)}
In the section on creating event handlers it may be very useful to describe how to work with a components properties from within the event handler.
This would make the exercises much easier.
The text was updated successfully, but these errors were encountered: