Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions src/content/learn/react-developer-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,21 @@ Adesso, aggiorna il tuo sito web nel browser per visualizzarlo nei developer too
![React Developer Tools standalone](/images/docs/react-devtools-standalone.png)

## Mobile (React Native) {/*mobile-react-native*/}
<<<<<<< HEAD
React Developer Tools si può anche usare per ispezionare app costruite con [React Native](https://reactnative.dev/).

Il modo più facile per usare React Developer Tools è installarlo globalmente:
```bash
# Yarn
yarn global add react-devtools
=======

# Npm
npm install -g react-devtools
```
To inspect apps built with [React Native](https://reactnative.dev/), you can use [React Native DevTools](https://reactnative.dev/docs/debugging/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.
>>>>>>> 3b02f828ff2a4f9d2846f077e442b8a405e2eb04

[Learn more about debugging in React Native.](https://reactnative.dev/docs/debugging)

<<<<<<< HEAD
Successivamente, apri i developer tools dal terminale.
```bash
react-devtools
Expand All @@ -74,3 +78,6 @@ Dovrebbe connettersi ad una qualsiasi app React Native locale in esecuzione.
> Prova a ricaricare l'app se developer tools non si connette dopo alcuni secondi.

[Ulteriori informazioni sul debugging di React Native.](https://reactnative.dev/docs/debugging)
=======
> 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.
>>>>>>> 3b02f828ff2a4f9d2846f077e442b8a405e2eb04
Loading