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
Copy file name to clipboardExpand all lines: public/rss.xml
+19-11Lines changed: 19 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,26 @@
4
4
<description><![CDATA[This blog is the official source for the updates from the React team. Anything important, including release notes or deprecation notices, will be posted here first.]]></description>
5
5
<link>https://react.dev/</link>
6
6
<generator>react.dev rss module</generator>
7
-
<lastBuildDate>Tue, 15 Oct 2024 19:03:53 GMT</lastBuildDate>
<description><![CDATA[React 19 is now available on npm! In this post, we'll give an overview of the new features in React 19, and how you can adopt them.]]></description>
<description><![CDATA[At React Conf 2024, we announced the experimental release of React Compiler, a build-time tool that optimizes your React app through automatic memoization. In this post, we want to share what's next for open source, and our progress on the compiler.]]></description>
<description><![CDATA[Last week we hosted React Conf 2024, a two-day conference in Henderson, Nevada where 700+ attendees gathered in-person to discuss the latest in UI engineering. In this post, we'll summarize the talks and announcements from the event.]]></description>
@@ -17,15 +33,7 @@
17
33
<pubDate>Tue, 21 May 2024 19:00:00 GMT</pubDate>
18
34
</item>
19
35
<item>
20
-
<title><![CDATA[React 19 RC]]></title>
21
-
<description><![CDATA[React 19 RC is now available on npm! In this post, we'll give an overview of the new features in React 19, and how you can adopt them.]]></description>
<description><![CDATA[The improvements added to React 19 require some breaking changes, but we've worked to make the upgrade as smooth as possible and we don't expect the changes to impact most apps. In this post, we will guide you through the steps for upgrading apps and libraries to React 19.]]></description>
Copy file name to clipboardExpand all lines: src/content/learn/react-developer-tools.md
+16-37Lines changed: 16 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,79 +4,58 @@ title: React Developer Tools
4
4
5
5
<Intro>
6
6
7
-
React [компоненттерін](/learn/your-first-component) тексеру, [пропстар](/learn/passing-props-to-a-component)және [күй](/learn/state-a) өңдеу үшін React Developer Tools-ты пайдаланыңыз және өнімділік мәселелерін анықтаныз.
7
+
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.
8
8
9
9
</Intro>
10
10
11
11
<YouWillLearn>
12
12
13
-
* React Developer Tools орнату жолы
13
+
*How to install React Developer Tools
14
14
15
15
</YouWillLearn>
16
16
17
-
## Браузер кеңейтімдері {/*browser-extension*/}
17
+
## Browser extension {/*browser-extension*/}
18
18
19
-
React көмегімен жасалған веб-сайттарды жөндеудің ең оңай жолы - React Developer Tools браузер кеңейтімін орнату. Ол бірнеше танымал браузерлер үшін қол жетімді:
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:
20
20
21
-
*[**Chrome** үшін орнату](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
22
-
*[**Firefox** үшін орнату](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
23
-
*[**Edge** үшін орнату](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil)
21
+
*[Install for **Chrome**](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
22
+
*[Install for **Firefox**](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
23
+
*[Install for **Edge**](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil)
24
24
25
-
Енді **React арқылы жасалған**веб-сайтқа кірсеңіз, _Components_және_Profiler_панельдерін көресіз.
25
+
Now, if you visit a website **built with React,**you will see the _Components_and_Profiler_panels.
## Мобильдік қосымша (React Native) {/*mobile-react-native*/}
55
-
React Developer Tools [React Native](https://reactnative.dev/) көмегімен жасалған қосымшаларды зеттеу үшін қолдануға болады.
56
-
57
-
React Developer Tools пайдаланудың ең оңай жолы - оны жалпы деңгейде орнату:
58
-
```bash
59
-
# Yarn
60
-
yarn global add react-devtools
61
-
62
-
# Npm
63
-
npm install -g react-devtools
64
-
```
65
-
Содан кейін терминалда келесі команданы шақырыныз:
66
-
```bash
67
-
react-devtools
68
-
```
69
-
Ол іске қосылған кезде локальді React Native қосымшанызға қосылуы керек.
70
-
71
-
> Программа зерттеу құралдары бірнеше секундтан кейін қосылмаса, қолданбаны қайта жүктеп көріңіз.
72
-
73
-
[React Native дебаггингі туралы көбірек білу.](https://reactnative.dev/docs/debugging)
74
-
=======
75
55
## Mobile (React Native) {/*mobile-react-native*/}
76
56
77
57
To inspect apps built with [React Native](https://reactnative.dev/), you can use [React Native DevTools](https://reactnative.dev/docs/react-native-devtools), the built-in debugger that deeply integrates React Developer Tools. All features work identically to the browser extension, including native element highlighting and selection.
78
58
79
59
[Learn more about debugging in React Native.](https://reactnative.dev/docs/debugging)
80
60
81
-
> For versions of React Native earlier than 0.76, please use the standalone build of React DevTools by following the [Safari and other browsers](#safari-and-other-browsers) guide above.
82
-
>>>>>>> 3b02f828ff2a4f9d2846f077e442b8a405e2eb04
61
+
> For versions of React Native earlier than 0.76, please use the standalone build of React DevTools by following the [Safari and other browsers](#safari-and-other-browsers) guide above.
0 commit comments