Skip to content

Commit f635fc8

Browse files
authored
chore: merge conflicts
1 parent 6f9b15e commit f635fc8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/content/learn/keeping-components-pure.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -769,13 +769,8 @@ In alternativa, potresti creare un _nuovo_ array (copiando quello esistente) pri
769769

770770
```js src/StoryTray.js active
771771
export default function StoryTray({ stories }) {
772-
<<<<<<< HEAD
773772
// Copia l'array!
774-
let storiesToDisplay = stories.slice();
775-
=======
776-
// Copy the array!
777773
const storiesToDisplay = stories.slice();
778-
>>>>>>> 50d6991ca6652f4bc4c985cf0c0e593864f2cc91
779774

780775
// Non influenza l'array originale:
781776
storiesToDisplay.push({

0 commit comments

Comments
 (0)