onClick
for buttons, onChange
for form inputs and onSubmit
for form submissions.const HandlingEvents = () => {
const handleClick = () => {
console.log("Clicked!")
};
const handleDragStart = () => {
console.log("Started dragging!");
};
const handleDragEnd = () => {
console.log("Finished dragging!");
};
return (
<DemoContainer>
<Hint>Drag me around!</Hint>
<Circle
onClick={handleClick}
onDragStart={handleDragStart}
onDragEnd={handleDragEnd}
/>
</DemoContainer>
);
};
export default HandlingEvents;
Note: Code snippets do not include styling details unless they are the focus of the exercise.
Copyright © 2022 Explore React