diff --git a/src/content/learn/responding-to-events.md b/src/content/learn/responding-to-events.md
index 4450c461..65281a01 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 `