Event handling in React is similar to handling DOM element events. The difference compared to HTML event handling is that event naming uses camelCase in React. The following sample component code adds an event listener to the button and shows an alert message when the button is pressed:
import React from 'react';
const MyComponent = () => {
// This is called when the button is pressed
const buttonPressed = () => {
alert('Button pressed');
}
return (
<div>
<button onClick={buttonPressed}>Press Me</button>
</div>
);
};
export default MyComponent;
In React, you cannot return false from the event handler to prevent default behavior. Instead, you should call the preventDefault() method. In the following example, we are using a form, and we want to prevent form submission:
import React from &apos...