-
Notifications
You must be signed in to change notification settings - Fork 84
Translation for the page 'Installation -> Getting Started' #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7b5719f
WIP: getting-started
deblasis 7e984df
getting-started: wrapping up
deblasis 572e9b1
Update static/html/single-file-example.html
LucaBlackDragon 5ec3ad3
Update content/docs/getting-started.md
LucaBlackDragon 49d11c8
Update content/docs/getting-started.md
LucaBlackDragon 255cce7
Update content/docs/getting-started.md
LucaBlackDragon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,35 +2,35 @@ | |
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Hello World</title> | ||
<title>Ciao Mondo</title> | ||
<script src="https://unpkg.com/react@16/umd/react.development.js"></script> | ||
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | ||
|
||
<!-- Don't use this in production: --> | ||
<!-- /!\ Non importare Babel nel browser in produzione: --> | ||
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="text/babel"> | ||
|
||
ReactDOM.render( | ||
<h1>Hello, world!</h1>, | ||
<h1>Ciao Mondo</h1>, | ||
document.getElementById('root') | ||
); | ||
|
||
</script> | ||
<!-- | ||
Note: this page is a great way to try React but it's not suitable for production. | ||
It slowly compiles JSX with Babel in the browser and uses a large development build of React. | ||
Nota: questa pagina è un ottimo modo per provare React ma non è adatta all'uso in produzione. | ||
Essa compila il codice JSX con Babel nel browser in modo molto lento ed utilizza una build di sviluppo di React non compressa. | ||
|
||
Read this section for a production-ready setup with JSX: | ||
https://reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project | ||
Leggi in questa sezione per i dettagli riguardo un setup di produzione con JSX: | ||
https://it.reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project | ||
|
||
In a larger project, you can use an integrated toolchain that includes JSX instead: | ||
https://reactjs.org/docs/create-a-new-react-app.html | ||
Nei progetti più grandi, puoi invece utilizzare una toolchain integrata che include JSX: | ||
https://it.reactjs.org/docs/create-a-new-react-app.html | ||
|
||
You can also use React without JSX, in which case you can remove Babel: | ||
https://reactjs.org/docs/react-without-jsx.html | ||
Poi anche utilizzare React senza JSX, in tal caso puoi rimuovere Babel: | ||
https://it.reactjs.org/docs/react-without-jsx.html | ||
--> | ||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.