Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
titovmx committed Aug 27, 2024
1 parent ba1d97c commit b143938
Showing 1 changed file with 4 additions and 20 deletions.
24 changes: 4 additions & 20 deletions src/content/learn/conditional-rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,7 @@ export default function PackingList() {
</Sandpack>

<<<<<<< HEAD
Обратите внимание, что у некоторых компонентов `Item` проп `isPacked` имеет значение `true`, вместо значения `false`. Если `isPacked={true}`, вы хотите добавить галочку(✔) к упакованным вещам.
=======
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}`.
>>>>>>> 7d50c3ffd4df2dc7903f4e41069653a456a9c223
Обратите внимание, что у некоторых компонентов `Item` проп `isPacked` имеет значение `true`, вместо значения `false`. Если `isPacked={true}`, вы хотите добавить галочку(✅) к упакованным вещам.

Можно реализовать это с помощью [управляющей конструкции `if`/`else`](https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Statements/if...) таким образом:

Expand Down Expand Up @@ -206,11 +202,7 @@ return (
);
```

<<<<<<< HEAD
Вы можете читать это как *"если `isPacked` равно true, тогда (`?`) рендерим `name + ' ✔'`, в противном случае (`:`) рендерим `name`"*.
=======
You can read it as *"if `isPacked` is true, then (`?`) render `name + ' ✅'`, otherwise (`:`) render `name`"*.
>>>>>>> 7d50c3ffd4df2dc7903f4e41069653a456a9c223
Вы можете читать это как *"если `isPacked` равно true, тогда (`?`) рендерим `name + ' ✅'`, в противном случае (`:`) рендерим `name`"*.

<DeepDive>

Expand Down Expand Up @@ -345,11 +337,7 @@ let itemContent = name;

```js
if (isPacked) {
<<<<<<< HEAD
itemContent = name + '';
=======
itemContent = name + "";
>>>>>>> 7d50c3ffd4df2dc7903f4e41069653a456a9c223
itemContent = name + '';
}
```

Expand All @@ -369,11 +357,7 @@ if (isPacked) {
function Item({ name, isPacked }) {
let itemContent = name;
if (isPacked) {
<<<<<<< HEAD
itemContent = name + '';
=======
itemContent = name + "";
>>>>>>> 7d50c3ffd4df2dc7903f4e41069653a456a9c223
itemContent = name + '';
}
return (
<li className="item">
Expand Down

0 comments on commit b143938

Please sign in to comment.