Skip to content

Commit 7b5719f

Browse files
committed
WIP: getting-started
Closes #39 Signed-off-by: Alessandro De Blasis <[email protected]>
1 parent 2909707 commit 7b5719f

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

content/docs/getting-started.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ redirect_from:
1818
- "docs/environments.html"
1919
---
2020

21-
This page is an overview of the React documentation and related resources.
21+
Questa pagina offre una panoramica sulla documentazione di React e sulle risorse correlate.
2222

23-
**React** is a JavaScript library for building user interfaces. Learn what React is all about on [our homepage](/) or [in the tutorial](/tutorial/tutorial.html).
23+
**React** è una liberia JavaScript per lo sviluppo di interfacce utente. Impara cos'è React cominciando dalla [nostra homepage](/) o [dal tutorial](/tutorial/tutorial.html).
2424

2525
---
2626

27-
- [Try React](#try-react)
28-
- [Learn React](#learn-react)
29-
- [Staying Informed](#staying-informed)
30-
- [Versioned Documentation](#versioned-documentation)
31-
- [Something Missing?](#something-missing)
27+
- [Prova React](#try-react)
28+
- [Impara React](#learn-react)
29+
- [Rimanere Aggiornati](#staying-informed)
30+
- [Documentazione Versionata](#versioned-documentation)
31+
- [Manca Qualcosa?](#something-missing)
3232

33-
## Try React {#try-react}
33+
## Prova React {#try-react}
3434

35-
React has been designed from the start for gradual adoption, and **you can use as little or as much React as you need.** Whether you want to get a taste of React, add some interactivity to a simple HTML page, or start a complex React-powered app, the links in this section will help you get started.
35+
React è stato progettato sin dal principio per la sua graduale adozione, per questo **puoi utilizzare quel poco o quel tanto di React di cui hai bisogno.** Se vuoi avere un assaggio di React, aggiungere un po' di interattività ad una semplice pagina HTML, o se vuoi cominciare lo sviluppo di una intera app complessa basata su React, i link in questa sezione ti aiuteranno nei primi passi.
3636

3737
### Online Playgrounds {#online-playgrounds}
3838

39-
If you're interested in playing around with React, you can use an online code playground. Try a Hello World template on [CodePen](codepen://hello-world), [CodeSandbox](https://codesandbox.io/s/new), or [Glitch](https://glitch.com/edit/#!/remix/starter-react-template).
39+
Se ti interessa giocare con il codice React, puoi utilizzare uno dei "Parchi Giochi" disponibili online. Prova un template "Hello World" su [CodePen](codepen://hello-world), [CodeSandbox](https://codesandbox.io/s/new) o [Glitch](https://glitch.com/edit/#!/remix/starter-react-template).
4040

41-
If you prefer to use your own text editor, you can also [download this HTML file](https://raw.githubusercontent.com/reactjs/reactjs.org/master/static/html/single-file-example.html), edit it, and open it from the local filesystem in your browser. It does a slow runtime code transformation, so we'd only recommend using this for simple demos.
41+
Se invece preferisci utilizzare il tuo editor di testo, puoi [scaricare questo file HTML](https://raw.githubusercontent.com/reactjs/reactjs.org/master/static/html/single-file-example.html), modificarlo, and open it from the local filesystem in your browser. It does a slow runtime code transformation, so we'd only recommend using this for simple demos.
4242

4343
### Add React to a Website {#add-react-to-a-website}
4444

static/html/single-file-example.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22
<html>
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Hello World</title>
5+
<title>Ciao Mondo</title>
66
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
77
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
88

9-
<!-- Don't use this in production: -->
9+
<!-- /!\ Non importare Babel nel browser in produzione: -->
1010
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
1111
</head>
1212
<body>
1313
<div id="root"></div>
1414
<script type="text/babel">
1515

1616
ReactDOM.render(
17-
<h1>Hello, world!</h1>,
17+
<h1>Ciao Mondo</h1>,
1818
document.getElementById('root')
1919
);
2020

2121
</script>
2222
<!--
23-
Note: this page is a great way to try React but it's not suitable for production.
24-
It slowly compiles JSX with Babel in the browser and uses a large development build of React.
23+
Nota: questa pagina è un ottimo modo per provare React ma non è adatta all'uso in produzione.
24+
Essa compila il codice JSC con Babel nel browser in modo molto lento ed utilizza una build di sviluppo di React non compressa.
2525
26-
Read this section for a production-ready setup with JSX:
27-
https://reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project
26+
Leggi in questa sezione per i dettagli riguardo un setup di produzione con JSX:
27+
https://it.reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project
2828
29-
In a larger project, you can use an integrated toolchain that includes JSX instead:
30-
https://reactjs.org/docs/create-a-new-react-app.html
29+
Nei progetti più grandi, puoi invece utilizzare una toolchain integrata che include JSX:
30+
https://it.reactjs.org/docs/create-a-new-react-app.html
3131
32-
You can also use React without JSX, in which case you can remove Babel:
33-
https://reactjs.org/docs/react-without-jsx.html
32+
Poi anche utilizzare React senza JSX, in tal caso puoi rimuovere Babel:
33+
https://it.reactjs.org/docs/react-without-jsx.html
3434
-->
3535
</body>
3636
</html>

0 commit comments

Comments
 (0)