Q1: Can I attach multiple event handlers to one element?
Yes, but you typically put all logic in one function.
Q2: Are React events the same as JavaScript events?
They are similar, but React wraps them in a SyntheticEvent for consistency.
Q3: Should I use inline event handlers?
For small apps, yes. For larger apps, define them as separate functions.