Skip to content

Commit 56f9775

Browse files
Inizio traduzione
1 parent a9c0a0d commit 56f9775

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

content/docs/add-react-to-a-website.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ prev: getting-started.html
88
next: create-a-new-react-app.html
99
---
1010

11-
Use as little or as much React as you need.
11+
Utilizza React quel poco o quel tanto che ti basta.
1212

13-
React has been designed from the start for gradual adoption, and **you can use as little or as much React as you need**. Perhaps you only want to add some "sprinkles of interactivity" to an existing page. React components are a great way to do that.
13+
React è stato progettato fin dall'inizio per essere adottato gradualmente, e **puoi utilizzarlo quel poco o quel tanto che ti basta**. Forse devi solamente aggiungere un "pizzico di interattività" a una pagina esistente. I componenti React sono un ottimo modo per farlo.
1414

15-
The majority of websites aren't, and don't need to be, single-page apps. With **a few lines of code and no build tooling**, try React in a small part of your website. You can then either gradually expand its presence, or keep it contained to a few dynamic widgets.
15+
La maggior parte dei siti non sono applicazioni single-page e non hanno bisogno di esserlo. Prova ad utilizzare React in una piccola parte del tuo sito, con **poche righe di codice e nessuno strumento di build**. In seguito, puoi espandere gradualmente la sua presenza, oppure lo puoi mantenere confinato ad alcuni widget dinamici.
1616

1717
---
1818

19-
- [Add React in One Minute](#add-react-in-one-minute)
20-
- [Optional: Try React with JSX](#optional-try-react-with-jsx) (no bundler necessary!)
19+
- [Aggiungi React in Un Minuto](#add-react-in-one-minute)
20+
- [Opzionale: Prova React con JSX](#optional-try-react-with-jsx) (non è necessario alcun bundler!)
2121

22-
## Add React in One Minute {#add-react-in-one-minute}
22+
## Aggiungi React in Un Minuto {#add-react-in-one-minute}
2323

2424
In this section, we will show how to add a React component to an existing HTML page. You can follow along with your own website, or create an empty HTML file to practice.
2525

@@ -121,7 +121,7 @@ If you already minify the application scripts, **your site will be production-re
121121

122122
If you don't have a minification step for your scripts, [here's one way to set it up](https://gist.github.com/gaearon/42a2ffa41b8319948f9be4076286e1f3).
123123

124-
## Optional: Try React with JSX {#optional-try-react-with-jsx}
124+
## Opzionale: Prova React con JSX {#optional-try-react-with-jsx}
125125

126126
In the examples above, we only relied on features that are natively supported by the browsers. This is why we used a JavaScript function call to tell React what to display:
127127

0 commit comments

Comments
 (0)