Skip to content

Thinking in react translation #421

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 26 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b463148
init translation
SamuelePiazzesi Apr 25, 2023
460b6bc
finish translation
SamuelePiazzesi Apr 25, 2023
d08cf02
finisth translation
SamuelePiazzesi Apr 25, 2023
28f8b3e
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
84d76e2
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
15bab83
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
259f612
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
64740cb
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
8e4fe42
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
cd0c883
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
6e622a9
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
0536972
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
28d2824
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
78bac6d
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
c5375ea
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
7dfed6e
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
b9dc350
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
1b7e644
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
fa284a1
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
9ab4576
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
6b7486e
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
1b2c3a9
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
944998a
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
3188d47
chore(thinking-in-react): updated references as well
deblasis Apr 26, 2023
4e4f55d
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
6791109
Update src/content/learn/thinking-in-react.md
SamuelePiazzesi Apr 26, 2023
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
74 changes: 37 additions & 37 deletions src/content/blog/2023/03/16/introducing-react-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ body {

</Sandpack>

We'd also like to highlight [Thinking in React](/learn/thinking-in-react)—that's the tutorial that made React "click" for many of us. **We've updated both of these classic tutorials to use function components and Hooks,** so they're as good as new.
We'd also like to highlight [Pensare in React](/learn/thinking-in-react)—that's the tutorial that made React "click" for many of us. **We've updated both of these classic tutorials to use function components and Hooks,** so they're as good as new.

<Note>

Expand Down Expand Up @@ -276,17 +276,17 @@ export default function PackingList() {
<section>
<h1>Sally Ride's Packing List</h1>
<ul>
<Item
isPacked={true}
name="Space suit"
<Item
isPacked={true}
name="Space suit"
/>
<Item
isPacked={true}
name="Helmet with a golden leaf"
<Item
isPacked={true}
name="Helmet with a golden leaf"
/>
<Item
isPacked={false}
name="Photo of Tam"
<Item
isPacked={false}
name="Photo of Tam"
/>
</ul>
</section>
Expand Down Expand Up @@ -314,17 +314,17 @@ export default function PackingList() {
<section>
<h1>Sally Ride's Packing List</h1>
<ul>
<Item
isPacked={true}
name="Space suit"
<Item
isPacked={true}
name="Space suit"
/>
<Item
isPacked={true}
name="Helmet with a golden leaf"
<Item
isPacked={true}
name="Helmet with a golden leaf"
/>
<Item
isPacked={false}
name="Photo of Tam"
<Item
isPacked={false}
name="Photo of Tam"
/>
</ul>
</section>
Expand Down Expand Up @@ -362,17 +362,17 @@ export default function PackingList() {
<section>
<h1>Sally Ride's Packing List</h1>
<ul>
<Item
importance={9}
name="Space suit"
<Item
importance={9}
name="Space suit"
/>
<Item
importance={0}
name="Helmet with a golden leaf"
<Item
importance={0}
name="Helmet with a golden leaf"
/>
<Item
importance={6}
name="Photo of Tam"
<Item
importance={6}
name="Photo of Tam"
/>
</ul>
</section>
Expand Down Expand Up @@ -406,17 +406,17 @@ export default function PackingList() {
<section>
<h1>Sally Ride's Packing List</h1>
<ul>
<Item
importance={9}
name="Space suit"
<Item
importance={9}
name="Space suit"
/>
<Item
importance={0}
name="Helmet with a golden leaf"
<Item
importance={0}
name="Helmet with a golden leaf"
/>
<Item
importance={6}
name="Photo of Tam"
<Item
importance={6}
name="Photo of Tam"
/>
</ul>
</section>
Expand Down
6 changes: 3 additions & 3 deletions src/content/learn/sharing-state-between-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ In a React application, many components will have their own state. Some state ma

Your app will change as you work on it. It is common that you will move state down or back up while you're still figuring out where each piece of the state "lives". This is all part of the process!

To see what this feels like in practice with a few more components, read [Thinking in React.](/learn/thinking-in-react)
To see what this feels like in practice with a few more components, read [Pensare in React.](/learn/thinking-in-react)

<Recap>

Expand All @@ -323,7 +323,7 @@ To see what this feels like in practice with a few more components, read [Thinki

#### Synced inputs {/*synced-inputs*/}

These two inputs are independent. Make them stay in sync: editing one input should update the other input with the same text, and vice versa.
These two inputs are independent. Make them stay in sync: editing one input should update the other input with the same text, and vice versa.

<Hint>

Expand Down Expand Up @@ -571,7 +571,7 @@ function SearchBar({ query, onChange }) {
function List({ items }) {
return (
<table>
<tbody>
<tbody>
{items.map(food => (
<tr key={food.id}>
<td>{food.name}</td>
Expand Down
Loading