You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use React Developer Tools to inspect React [components](/learn/your-first-component), edit [props](/learn/passing-props-to-a-component)and [state](/learn/state-a-components-memory), and identify performance problems.
7
+
Використовуйте інструменти React розробника (_React Developer Tools_) для інспектування React [компонентів](/learn/your-first-component), редагування їх [пропсів](/learn/passing-props-to-a-component)і [стану](/learn/state-a-components-memory), а також для виявлення проблем з продуктивністю.
8
8
9
9
</Intro>
10
10
11
11
<YouWillLearn>
12
12
13
-
*How to install React Developer Tools
13
+
*Як встановити інструменти React розробника
14
14
15
15
</YouWillLearn>
16
16
17
-
## Browser extension {/*browser-extension*/}
17
+
## Розширення браузера {/*browser-extension*/}
18
18
19
-
The easiest way to debug websites built with React is to install the React Developer Tools browser extension. It is available for several popular browsers:
19
+
Найпростіший спосіб налагодження вебсайтів, створених за допомогою React — встановити розширення браузера "Інструменти React розробника" (_React Developer Tools_). Воно доступне для декількох популярних браузерів:
Інструменти React розробника також можна використовувати для інспектування застосунків, створених за допомогою[React Native](https://reactnative.dev/).
57
57
58
-
The easiest way to use React Developer Tools is to install it globally:
58
+
Найпростіший спосіб використання інструментів — встановити їх глобально:
59
59
```bash
60
60
# Yarn
61
61
yarn global add react-devtools
@@ -64,13 +64,13 @@ yarn global add react-devtools
64
64
npm install -g react-devtools
65
65
```
66
66
67
-
Next open the developer tools from the terminal.
67
+
Далі відкрийте інструменти розробника з терміналу:
68
68
```bash
69
69
react-devtools
70
70
```
71
71
72
-
It should connect to any local React Native app that's running.
72
+
Вони повинні під'єднатися до будь-якого локально працюючого застосунку React Native.
73
73
74
-
> Try reloading the app if developer tools doesn't connect after a few seconds.
74
+
> Спробуйте перезавантажити застосунок, якщо інструменти розробки не під'єднуються протягом кількох секунд.
75
75
76
-
[Learn more about debugging React Native.](https://reactnative.dev/docs/debugging)
76
+
[Дізнатися більше про налагодження React Native.](https://reactnative.dev/docs/debugging)
0 commit comments