diff --git a/src/content/learn/responding-to-events.md b/src/content/learn/responding-to-events.md
index 17bd087ed..a1d03834e 100644
--- a/src/content/learn/responding-to-events.md
+++ b/src/content/learn/responding-to-events.md
@@ -1,24 +1,24 @@
---
-title: Responding to Events
+title: Реагування на події
---
-React lets you add *event handlers* to your JSX. Event handlers are your own functions that will be triggered in response to interactions like clicking, hovering, focusing form inputs, and so on.
+React надає вам можливість додавати *обробники подій* до вашого JSX. Обробники подій — це ваші власні функції, які виконуватимуться у відповідь на різні взаємодії, як-от натискання мишкою, наведення курсора, фокусування в елементі введення даних у формі тощо.
-* Different ways to write an event handler
-* How to pass event handling logic from a parent component
-* How events propagate and how to stop them
+* Різні способи написання обробника подій
+* Як передати логіку обробки подій від батьківського компонента
+* Поширення подій і як це зупинити
-## Adding event handlers {/*adding-event-handlers*/}
+## Додавання обробників подій {/*adding-event-handlers*/}
-To add an event handler, you will first define a function and then [pass it as a prop](/learn/passing-props-to-a-component) to the appropriate JSX tag. For example, here is a button that doesn't do anything yet:
+Щоб додати обробник подій, спочатку визначте функцію, а потім [передайте її як проп](/learn/passing-props-to-a-component) у відповідний JSX-тег. Наприклад, ось кнопка, яка ще нічого не робить:
@@ -26,7 +26,7 @@ To add an event handler, you will first define a function and then [pass it as a
export default function Button() {
return (
);
}
@@ -34,23 +34,23 @@ export default function Button() {
-You can make it show a message when a user clicks by following these three steps:
+Ви можете налаштувати показ повідомлення, коли користувач натискає на неї, виконавши ці три кроки:
-1. Declare a function called `handleClick` *inside* your `Button` component.
-2. Implement the logic inside that function (use `alert` to show the message).
-3. Add `onClick={handleClick}` to the `