Skip to content

Commit

Permalink
Fix merge conflicts for conditional-rendering.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bielarusajed authored Aug 26, 2024
1 parent ac003df commit e73aacd
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 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

Вы можаце зрабіць гэта з дапамогай [канструкцыі `if`/`else`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/if...else) такім чынам:

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

0 comments on commit e73aacd

Please sign in to comment.