Skip to content

Commit 97cd46a

Browse files
committed
chore: merge conflicts
Signed-off-by: Alessandro De Blasis <alex@deblasis.net>
1 parent 28e0b97 commit 97cd46a

File tree

3 files changed

+3
-22
lines changed

3 files changed

+3
-22
lines changed

src/content/learn/adding-interactivity.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,11 +265,7 @@ setCount(count + 1); // Richiedi un re-render con 1
265265
console.log(count); // Ancora 0!
266266
```
267267

268-
<<<<<<< HEAD
269268
Questo comportamento aiuta a evitare bug difficili da individuare. Ecco una piccola app di messaggistica. Prova a indovinare cosa succede se premi "Send" e *poi* selezioni il destinatario Bob. Quale nome apparirà nell'`alert` cinque secondi dopo?
270-
=======
271-
This behavior helps you avoid subtle bugs. Here is a little chat app. Try to guess what happens if you press "Send" first and *then* change the recipient to Bob. Whose name will appear in the `alert` five seconds later?
272-
>>>>>>> 0f2284ddc8dcab8bbb9b42c04f3c7af94b5b2e73
273269

274270
<Sandpack>
275271

src/content/learn/conditional-rendering.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,7 @@ export default function PackingList() {
5252
5353
</Sandpack>
5454
55-
<<<<<<< HEAD
56-
Nota che alcuni componenti `Item` hanno la loro prop `isPacked` settata a `true` invece che `false`. Vuoi aggiungere un segno di spunta (✔) agli elementi imballati se `isPacked={true}`.
57-
=======
58-
Notice that some of the `Item` components have their `isPacked` prop set to `true` instead of `false`. You want to add a checkmark (✅) to packed items if `isPacked={true}`.
59-
>>>>>>> 0f2284ddc8dcab8bbb9b42c04f3c7af94b5b2e73
55+
Nota che alcuni componenti `Item` hanno la loro prop `isPacked` settata a `true` invece che `false`. Vuoi aggiungere un segno di spunta (✅) agli elementi imballati se `isPacked={true}`.
6056
6157
Puoi scrivere questo come un'[istruzione `if`/`else`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/if...else) in questo modo:
6258

@@ -206,11 +202,7 @@ return (
206202
);
207203
```
208204
209-
<<<<<<< HEAD
210-
Puoi leggerlo come *"se `isPacked` è true, allora (`?`) renderizza `name + ''`, altrimenti (`:`) renderizza `name`"*.
211-
=======
212-
You can read it as *"if `isPacked` is true, then (`?`) render `name + ''`, otherwise (`:`) render `name`"*.
213-
>>>>>>> 0f2284ddc8dcab8bbb9b42c04f3c7af94b5b2e73
205+
Puoi leggerlo come *"se `isPacked` è true, allora (`?`) renderizza `name + ''`, altrimenti (`:`) renderizza `name`"*.
214206
215207
<DeepDive>
216208

src/content/reference/react/index.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,10 @@ La documentazione di riferimento su React è suddivisa in sottosezioni funzional
1414

1515
Funzionalità React programmatiche:
1616

17-
<<<<<<< HEAD
1817
* [Hooks](/reference/react/hooks) - Utilizza diverse funzionalità di React dai tuoi componenti.
19-
* [Componenti](/reference/react/components) - Documenta i componenti integrati che puoi utilizzare nel tuo JSX.
18+
* [Componenti](/reference/react/components) - Componenti integrati che puoi utilizzare nel tuo JSX.
2019
* [API](/reference/react/apis) - API utili per la definizione dei componenti.
2120
* [Direttive](/reference/rsc/directives) - Fornisce istruzioni ai bundler compatibili con React Server Components.
22-
=======
23-
* [Hooks](/reference/react/hooks) - Use different React features from your components.
24-
* [Components](/reference/react/components) - Built-in components that you can use in your JSX.
25-
* [APIs](/reference/react/apis) - APIs that are useful for defining components.
26-
* [Directives](/reference/rsc/directives) - Provide instructions to bundlers compatible with React Server Components.
27-
>>>>>>> 0f2284ddc8dcab8bbb9b42c04f3c7af94b5b2e73
2821

2922
## React DOM {/*react-dom*/}
3023

0 commit comments

Comments
 (0)